GeoRSS aggregator and Layar augmented reality server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

51 lines
968 B

  1. source 'https://rubygems.org'
  2. ruby "1.9.2"
  3. gem 'rails', '3.2.12'
  4. # Gems used only for assets and not required
  5. # in production environments by default.
  6. group :assets do
  7. gem 'sass-rails', '~> 3.2.3'
  8. gem 'coffee-rails', '~> 3.2.1'
  9. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  10. # gem 'therubyracer', :platforms => :ruby
  11. gem 'uglifier', '>= 1.0.3'
  12. end
  13. gem 'jquery-rails'
  14. # To use ActiveModel has_secure_password
  15. # gem 'bcrypt-ruby', '~> 3.0.0'
  16. # To use Jbuilder templates for JSON
  17. # gem 'jbuilder'
  18. # Deploy with Capistrano
  19. # gem 'capistrano'
  20. # To use debugger
  21. # gem 'debugger'
  22. gem 'haml-rails'
  23. gem 'feedzirra'
  24. gem 'htmlentities'
  25. gem 'sorcery'
  26. gem 'will_paginate', '~> 3.0'
  27. gem 'activerecord-postgresql-adapter'
  28. gem 'pg'
  29. gem 'delayed_job_active_record'
  30. gem 'daemons'
  31. gem 'workless'
  32. group :production do
  33. gem 'unicorn'
  34. end
  35. group :development do
  36. gem 'meta_request'
  37. gem 'better_errors'
  38. gem 'binding_of_caller'
  39. end