Gemfile 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. source 'https://rubygems.org'
  2. # Bundler <1.5 does not recognize :x64_mingw as a valid platform name.
  3. # Unfortunately, it can't self-update because it errors when encountering :x64_mingw.
  4. unless Gem::Version.new(Bundler::VERSION) >= Gem::Version.new('1.5.0')
  5. STDERR.puts "Bundler >=1.5.0 is required. Please upgrade bundler with 'gem install bundler'"
  6. exit 1
  7. end
  8. gem 'bundler', '>= 1.5.0'
  9. gem 'protected_attributes', '~>1.0.8'
  10. gem 'rails' , '4.1.4'
  11. case RUBY_PLATFORM
  12. when /freebsd/
  13. # Seems FreeBSD's zoneinfo is not exactly what tzinfo expects
  14. gem 'tzinfo-data'
  15. else
  16. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  17. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
  18. end
  19. gem 'mysql2', '~> 0.3.16'
  20. gem 'devise', '~> 3.2.4'
  21. gem 'kaminari', '~> 0.16.1'
  22. gem 'bootstrap-kaminari-views', '~> 0.0.3'
  23. gem 'rufus-scheduler', '~> 3.0.8', require: false
  24. gem 'json', '~> 1.8.1'
  25. gem 'jsonpath', '~> 0.5.6'
  26. gem 'twilio-ruby', '~> 3.11.5'
  27. gem 'ruby-growl', '~> 4.1.0'
  28. gem 'liquid', '~> 2.6.1'
  29. gem 'delayed_job', '~> 4.0.0'
  30. gem 'delayed_job_active_record', '~> 4.0.0'
  31. gem 'daemons', '~> 1.1.9'
  32. # To enable DelayedJobWeb, see the 'Enable DelayedJobWeb' section of the README.
  33. # gem 'delayed_job_web'
  34. gem 'foreman', '~> 0.63.0'
  35. gem 'sass-rails', '~> 4.0.0'
  36. gem 'coffee-rails', '~> 4.0.0'
  37. gem 'uglifier', '>= 1.3.0'
  38. gem 'select2-rails', '~> 3.5.4'
  39. gem 'jquery-rails', '~> 3.1.0'
  40. gem 'ace-rails-ap', '~> 2.0.1'
  41. # geokit-rails doesn't work with geokit 1.8.X but it specifies ~> 1.5
  42. # in its own Gemfile.
  43. gem 'geokit', '~> 1.8.4'
  44. gem 'geokit-rails', '~> 2.0.1'
  45. gem 'kramdown', '~> 1.3.3'
  46. gem 'faraday', '~> 0.9.0'
  47. gem 'faraday_middleware'
  48. gem 'typhoeus', '~> 0.6.3'
  49. gem 'nokogiri', '~> 1.6.1'
  50. gem 'net-ftp-list', '~> 3.2.8'
  51. gem 'wunderground', '~> 1.2.0'
  52. gem 'forecast_io', '~> 2.0.0'
  53. gem 'rturk', '~> 2.12.1'
  54. gem "google-api-client"
  55. gem 'twitter', '~> 5.8.0'
  56. gem 'cantino-twitter-stream', github: 'cantino/twitter-stream', branch: 'master'
  57. gem 'em-http-request', '~> 1.1.2'
  58. gem 'weibo_2', '~> 0.1.4'
  59. gem 'hipchat', '~> 1.2.0'
  60. gem 'xmpp4r', '~> 0.5.6'
  61. gem 'feed-normalizer'
  62. gem 'slack-notifier', '~> 0.5.0'
  63. gem 'therubyracer', '~> 0.12.1'
  64. gem 'mqtt'
  65. gem 'omniauth'
  66. gem 'omniauth-twitter'
  67. gem 'omniauth-37signals'
  68. gem 'omniauth-github'
  69. group :development do
  70. gem 'binding_of_caller'
  71. gem 'better_errors'
  72. gem 'quiet_assets'
  73. end
  74. group :development, :test do
  75. gem 'vcr'
  76. gem 'dotenv-rails'
  77. gem 'pry'
  78. gem 'rspec-rails', '~> 2.99'
  79. gem 'rspec', '~> 2.99'
  80. gem 'rspec-collection_matchers'
  81. gem 'shoulda-matchers'
  82. gem 'rr'
  83. gem 'delorean'
  84. gem 'webmock', '~> 1.17.4', require: false
  85. gem 'coveralls', require: false
  86. end
  87. group :production do
  88. gem 'dotenv-deployment'
  89. gem 'rack'
  90. end
  91. # This hack needs some explanation. When on Heroku, use the pg, unicorn, and rails12factor gems.
  92. # When not on Heroku, we still want our Gemfile.lock to include these gems, so we scope them to
  93. # an unsupported platform.
  94. if ENV['ON_HEROKU'] || ENV['HEROKU_POSTGRESQL_ROSE_URL'] || File.read(File.join(File.dirname(__FILE__), 'Procfile')) =~ /intended for Heroku/
  95. gem 'pg'
  96. gem 'unicorn'
  97. gem 'rails_12factor'
  98. else
  99. gem 'pg', platform: :ruby_18
  100. gem 'unicorn', platform: :ruby_18
  101. gem 'rails_12factor', platform: :ruby_18
  102. end