Gemfile 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. source 'https://rubygems.org'
  2. # Optional libraries. To conserve RAM, comment out any that you don't need,
  3. # then run `bundle` and commit the updated Gemfile and Gemfile.lock.
  4. gem 'twilio-ruby', '~> 3.11.5' # TwilioAgent
  5. gem 'ruby-growl', '~> 4.1.0' # GrowlAgent
  6. gem 'net-ftp-list', '~> 3.2.8' # FtpsiteAgent
  7. gem 'wunderground', '~> 1.2.0' # WeatherAgent
  8. gem 'forecast_io', '~> 2.0.0' # WeatherAgent
  9. gem 'rturk', '~> 2.12.1' # HumanTaskAgent
  10. gem 'weibo_2', '~> 0.1.4' # Weibo Agents
  11. gem 'hipchat', '~> 1.2.0' # HipchatAgent
  12. gem 'xmpp4r', '~> 0.5.6' # JabberAgent
  13. gem 'mqtt' # MQTTAgent
  14. gem 'slack-notifier', '~> 0.5.0' # SlackAgent
  15. gem 'github_api' # GithubEventsAgent
  16. # GoogleCalendarPublishAgent
  17. gem "google-api-client", require: 'google/api_client'
  18. # Twitter Agents
  19. gem 'twitter', '~> 5.8.0' # Must to be loaded before cantino-twitter-stream.
  20. gem 'cantino-twitter-stream', github: 'cantino/twitter-stream', branch: 'master'
  21. gem 'omniauth-twitter'
  22. # Tumblr Agents
  23. gem 'tumblr_client'
  24. gem 'omniauth-tumblr'
  25. # Dropbox Agents
  26. gem 'dropbox-api'
  27. gem 'omniauth-dropbox'
  28. # Optional Services.
  29. gem 'omniauth-37signals' # BasecampAgent
  30. # gem 'omniauth-github'
  31. # Bundler <1.5 does not recognize :x64_mingw as a valid platform name.
  32. # Unfortunately, it can't self-update because it errors when encountering :x64_mingw.
  33. unless Gem::Version.new(Bundler::VERSION) >= Gem::Version.new('1.5.0')
  34. STDERR.puts "Bundler >=1.5.0 is required. Please upgrade bundler with 'gem install bundler'"
  35. exit 1
  36. end
  37. gem 'protected_attributes', '~>1.0.8' # This must be loaded before some other gems, like delayed_job.
  38. gem 'ace-rails-ap', '~> 2.0.1'
  39. gem 'bootstrap-kaminari-views', '~> 0.0.3'
  40. gem 'bundler', '>= 1.5.0'
  41. gem 'coffee-rails', '~> 4.0.0'
  42. gem 'daemons', '~> 1.1.9'
  43. gem 'delayed_job', '~> 4.0.0'
  44. gem 'delayed_job_active_record', '~> 4.0.0'
  45. gem 'devise', '~> 3.4.0'
  46. gem 'em-http-request', '~> 1.1.2'
  47. gem 'faraday', '~> 0.9.0'
  48. gem 'faraday_middleware'
  49. gem 'feed-normalizer'
  50. gem 'font-awesome-sass'
  51. gem 'foreman', '~> 0.63.0'
  52. # geokit-rails doesn't work with geokit 1.8.X but it specifies ~> 1.5
  53. # in its own Gemfile.
  54. gem 'geokit', '~> 1.8.4'
  55. gem 'geokit-rails', '~> 2.0.1'
  56. gem 'httparty', '~> 0.13'
  57. gem 'jquery-rails', '~> 3.1.0'
  58. gem 'json', '~> 1.8.1'
  59. gem 'jsonpath', '~> 0.5.6'
  60. gem 'kaminari', '~> 0.16.1'
  61. gem 'kramdown', '~> 1.3.3'
  62. gem 'liquid', '~> 2.6.1'
  63. gem 'mysql2', '~> 0.3.16'
  64. gem 'multi_xml'
  65. gem 'nokogiri', '~> 1.6.1'
  66. gem 'omniauth'
  67. gem 'rails' , '4.1.5'
  68. gem 'rufus-scheduler', '~> 3.0.8', require: false
  69. gem 'sass-rails', '~> 4.0.0'
  70. gem 'select2-rails', '~> 3.5.4'
  71. gem 'spectrum-rails'
  72. gem 'therubyracer', '~> 0.12.1'
  73. gem 'typhoeus', '~> 0.6.3'
  74. gem 'uglifier', '>= 1.3.0'
  75. group :development do
  76. gem 'better_errors', '~> 1.1'
  77. gem 'binding_of_caller'
  78. gem 'quiet_assets'
  79. gem 'guard'
  80. gem 'guard-livereload'
  81. gem 'guard-rspec'
  82. end
  83. group :development, :test do
  84. gem 'coveralls', require: false
  85. gem 'delorean'
  86. gem 'dotenv-rails'
  87. gem 'pry'
  88. gem 'rr'
  89. gem 'rspec', '~> 3.0'
  90. gem 'rspec-collection_matchers', '~> 1.0.0'
  91. gem 'rspec-rails', '~> 3.0.1'
  92. gem 'rspec-html-matchers', '~> 0.6.1'
  93. gem 'shoulda-matchers'
  94. gem 'spring'
  95. gem 'spring-commands-rspec'
  96. gem 'vcr'
  97. gem 'webmock', '~> 1.17.4', require: false
  98. end
  99. group :production do
  100. gem 'dotenv-deployment'
  101. gem 'rack'
  102. end
  103. # Platform requirements.
  104. gem 'ffi', '>= 1.9.4' # required by typhoeus; 1.9.4 has fixes for *BSD.
  105. gem 'tzinfo', '>= 1.2.0' # required by rails; 1.2.0 has support for *BSD and Solaris.
  106. # Windows does not have zoneinfo files, so bundle the tzinfo-data gem.
  107. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
  108. # This hack needs some explanation. When on Heroku, use the pg, unicorn, and rails12factor gems.
  109. # When not on Heroku, we still want our Gemfile.lock to include these gems, so we scope them to
  110. # an unsupported platform.
  111. if ENV['ON_HEROKU'] || ENV['HEROKU_POSTGRESQL_ROSE_URL'] || File.read(File.join(File.dirname(__FILE__), 'Procfile')) =~ /intended for Heroku/
  112. gem 'pg'
  113. gem 'unicorn'
  114. gem 'rails_12factor'
  115. else
  116. gem 'pg', platform: :ruby_18
  117. gem 'unicorn', platform: :ruby_18
  118. gem 'rails_12factor', platform: :ruby_18
  119. end