Gemfile 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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: 'tumblr/tumblr_client', branch: 'master' # '>= 0.8.5'
  27. gem 'omniauth-tumblr'
  28. # Dropbox Agents
  29. gem 'dropbox-api'
  30. gem 'omniauth-dropbox'
  31. # UserLocationAgent
  32. gem 'haversine'
  33. # EvernoteAgent
  34. gem 'omniauth-evernote'
  35. gem 'evernote_oauth'
  36. # Optional Services.
  37. gem 'omniauth-37signals' # BasecampAgent
  38. gem 'omniauth-wunderlist', github: 'wunderlist/omniauth-wunderlist', ref: 'd0910d0396107b9302aa1bc50e74bb140990ccb8'
  39. # Bundler <1.5 does not recognize :x64_mingw as a valid platform name.
  40. # Unfortunately, it can't self-update because it errors when encountering :x64_mingw.
  41. unless Gem::Version.new(Bundler::VERSION) >= Gem::Version.new('1.5.0')
  42. STDERR.puts "Bundler >=1.5.0 is required. Please upgrade bundler with 'gem install bundler'"
  43. exit 1
  44. end
  45. gem 'protected_attributes', '~>1.0.8' # This must be loaded before some other gems, like delayed_job.
  46. gem 'ace-rails-ap', '~> 2.0.1'
  47. gem 'bootstrap-kaminari-views', '~> 0.0.3'
  48. gem 'bundler', '>= 1.5.0'
  49. gem 'coffee-rails', '~> 4.1.0'
  50. gem 'daemons', '~> 1.1.9'
  51. gem 'delayed_job', '~> 4.0.0'
  52. gem 'delayed_job_active_record', :git => 'https://github.com/cantino/delayed_job_active_record', :branch => 'configurable-reserve-sql-strategy'
  53. gem 'devise', '~> 3.4.0'
  54. gem 'dotenv-rails', '~> 2.0.1'
  55. gem 'em-http-request', '~> 1.1.2'
  56. gem 'faraday', '~> 0.9.0'
  57. gem 'faraday_middleware', github: 'lostisland/faraday_middleware', branch: 'master' # '>= 0.10.1'
  58. gem 'feed-normalizer'
  59. gem 'font-awesome-sass', '~> 4.3.2'
  60. gem 'foreman', '~> 0.63.0'
  61. # geokit-rails doesn't work with geokit 1.8.X but it specifies ~> 1.5
  62. # in its own Gemfile.
  63. gem 'geokit', '~> 1.8.4'
  64. gem 'geokit-rails', '~> 2.0.1'
  65. gem 'httparty', '~> 0.13'
  66. gem 'jquery-rails', '~> 3.1.3'
  67. gem 'json', '~> 1.8.1'
  68. gem 'jsonpath', '~> 0.5.6'
  69. gem 'kaminari', '~> 0.16.1'
  70. gem 'kramdown', '~> 1.3.3'
  71. gem 'liquid', '~> 3.0.3'
  72. gem 'mini_magick'
  73. gem 'mysql2', '~> 0.3.16'
  74. gem 'multi_xml'
  75. gem 'nokogiri', '~> 1.6.4'
  76. gem 'omniauth'
  77. gem 'rails', '4.2.4'
  78. gem 'rufus-scheduler', '~> 3.0.8', require: false
  79. gem 'sass-rails', '~> 5.0.3'
  80. gem 'select2-rails', '~> 3.5.4'
  81. gem 'spectrum-rails'
  82. gem 'string-scrub' # for ruby <2.1
  83. gem 'therubyracer', '~> 0.12.2'
  84. gem 'typhoeus', '~> 0.6.3'
  85. gem 'uglifier', '>= 1.3.0'
  86. group :development do
  87. gem 'better_errors', '~> 1.1'
  88. gem 'binding_of_caller'
  89. gem 'quiet_assets'
  90. gem 'guard'
  91. gem 'guard-livereload', '~> 2.2'
  92. gem 'guard-rspec'
  93. gem 'letter_opener_web'
  94. gem 'capistrano', '~> 3.4.0'
  95. gem 'capistrano-rails', '~> 1.1'
  96. gem 'capistrano-bundler', '~> 1.1.4'
  97. group :test do
  98. gem 'coveralls', require: false
  99. gem 'delorean'
  100. gem 'pry-rails'
  101. gem 'rr'
  102. gem 'rspec', '~> 3.2'
  103. gem 'rspec-collection_matchers', '~> 1.1.0'
  104. gem 'rspec-rails', '~> 3.1'
  105. gem 'rspec-html-matchers', '~> 0.7'
  106. gem 'shoulda-matchers'
  107. gem 'vcr'
  108. gem 'webmock', '~> 1.17.4', require: false
  109. end
  110. end
  111. group :production do
  112. gem 'rack', '> 1.5.0'
  113. gem 'unicorn', '~> 4.9.0'
  114. end
  115. # Platform requirements.
  116. gem 'ffi', '>= 1.9.4' # required by typhoeus; 1.9.4 has fixes for *BSD.
  117. gem 'tzinfo', '>= 1.2.0' # required by rails; 1.2.0 has support for *BSD and Solaris.
  118. # Windows does not have zoneinfo files, so bundle the tzinfo-data gem.
  119. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
  120. # Introduces a scope for Heroku specific gems.
  121. def on_heroku
  122. if ENV['ON_HEROKU'] ||
  123. ENV['HEROKU_POSTGRESQL_ROSE_URL'] ||
  124. ENV['HEROKU_POSTGRESQL_GOLD_URL'] ||
  125. File.read(File.join(File.dirname(__FILE__), 'Procfile')) =~ /intended for Heroku/
  126. yield
  127. else
  128. # When not on Heroku, we still want our Gemfile.lock to include
  129. # Heroku specific gems, so we scope them to an unsupported
  130. # platform.
  131. platform :ruby_18, &proc
  132. end
  133. end
  134. on_heroku do
  135. gem 'pg'
  136. gem 'rails_12factor', group: :production
  137. end