Gemfile 3.9 KB

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