Gemfile 4.7 KB

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