2012-11-18 07:39:07 +00:00
|
|
|
#ruby=1.9.3
|
2013-06-24 22:02:37 +00:00
|
|
|
source 'http://rubygems.org'
|
2013-04-10 06:16:04 +00:00
|
|
|
unless ENV["LOCAL_DEV"] == "1"
|
2013-07-19 21:37:14 +00:00
|
|
|
source 'https://jamjam:blueberryjam@int.jamkazam.com/gems/'
|
2013-04-10 06:16:04 +00:00
|
|
|
end
|
2012-08-03 03:07:03 +00:00
|
|
|
|
2021-02-01 03:25:09 +00:00
|
|
|
ruby_version = ENV["JAM_RUBY_VERSION"]
|
|
|
|
|
ruby_version = "2.3.1" if ruby_version.nil?
|
|
|
|
|
|
|
|
|
|
ruby ruby_version
|
2012-08-06 03:01:00 +00:00
|
|
|
|
2021-02-01 03:25:09 +00:00
|
|
|
devenv = ENV["BUILD_NUMBER"].nil?
|
2014-01-26 20:46:11 +00:00
|
|
|
if devenv
|
|
|
|
|
gem 'jam_db', :path=> "../db/target/ruby_package"
|
|
|
|
|
gem 'jampb', :path => "../pb/target/ruby/jampb"
|
|
|
|
|
else
|
|
|
|
|
gem 'jam_db'
|
|
|
|
|
gem 'jampb'
|
|
|
|
|
ENV['NOKOGIRI_USE_SYSTEM_LIBRARIES'] ||= "true"
|
|
|
|
|
end
|
|
|
|
|
|
2021-02-01 03:25:09 +00:00
|
|
|
# on mac, you have to do gem install pg:0.17.1 -- --with-cflags="-Wno-error=implicit-function-declaration"
|
2014-02-02 19:34:53 +00:00
|
|
|
gem 'pg', '0.17.1', :platform => [:mri, :mswin, :mingw]
|
2016-07-17 15:16:27 +00:00
|
|
|
#gem 'jdbc_postgres', :platform => [:jruby]
|
|
|
|
|
|
2021-02-01 03:25:09 +00:00
|
|
|
gem 'activerecord', '= 4.2.8'
|
|
|
|
|
gem 'railties', '= 4.2.8'
|
|
|
|
|
gem 'actionmailer', '= 4.2.8'
|
2016-07-17 15:16:27 +00:00
|
|
|
gem 'rails-observers', '0.1.2'
|
|
|
|
|
gem 'protected_attributes' # needed to support attr_accessible
|
2021-02-01 06:10:01 +00:00
|
|
|
|
|
|
|
|
# PINNED TO SUPPORT BOTH 2.3.1 and 2.4.1 Ruby simultaneously
|
|
|
|
|
# This should be the same in ruby/admin/web/websocket-gateway
|
|
|
|
|
#######
|
2021-02-01 03:25:09 +00:00
|
|
|
gem 'nokogiri', '1.10.10' # added to pin before 1.11.0, which requires at leaost ruby 2.5. unpin we go above
|
|
|
|
|
gem 'sprockets', '3.6.3' # added to pin before 4.0.0, which requiurse at least ruby 2.5
|
2021-02-01 06:10:01 +00:00
|
|
|
gem 'fog-brightbox', '0.11.0' # pinned until we are on ruby 2.5; then remove
|
|
|
|
|
gem 'faraday', '0.9.2' # pinned untnil we are on ruby 2.5; then remove
|
|
|
|
|
gem 'ruby-prof', '0.15.9' # pinned until we are on ruby 2.5; then remove
|
|
|
|
|
gem 'rubyzip', '1.2.0' # pinned until we are on ruby 2.5; then remove
|
|
|
|
|
gem 'recurly', '2.7.0' # should upgrade to 3.x when we have time to validaate
|
|
|
|
|
gem 'icalendar', '2.4.0' # pinned until we are on ruby 2.5; then remove
|
|
|
|
|
gem 'email_validator', '1.6.0' # pinned until we are on ruby 2.5, then remove
|
|
|
|
|
gem 'redis', '3.3.0' # pinned until we are on 2.5; then remove
|
|
|
|
|
gem 'redis-namespace', '1.5.2' # pinned until we are on 2.5; then remove
|
|
|
|
|
gem 'oj', '2.17.1' # pinned until we are on 2.5; then remove
|
|
|
|
|
#######
|
|
|
|
|
|
2013-12-29 04:51:35 +00:00
|
|
|
gem "activerecord-import", "~> 0.4.1"
|
2020-04-06 04:59:55 +00:00
|
|
|
gem "auto_strip_attributes"
|
2021-02-01 03:25:09 +00:00
|
|
|
gem "json", "1.8.6"
|
2012-08-06 03:01:00 +00:00
|
|
|
gem 'uuidtools', '2.1.2'
|
|
|
|
|
gem 'bcrypt-ruby', '3.0.1'
|
2012-08-18 18:48:43 +00:00
|
|
|
gem 'ruby-protocol-buffers', '1.2.2'
|
2015-07-15 15:04:45 +00:00
|
|
|
gem 'eventmachine', '1.0.4'
|
2015-06-16 17:23:57 +00:00
|
|
|
gem 'amqp', '1.0.2'
|
2016-01-04 19:42:11 +00:00
|
|
|
gem 'kickbox'
|
2012-11-07 13:10:41 +00:00
|
|
|
gem 'will_paginate'
|
2014-03-19 16:37:03 +00:00
|
|
|
gem 'sendgrid', '1.2.0'
|
2015-02-06 23:07:18 +00:00
|
|
|
gem 'aws-sdk', '~> 1'
|
2014-04-03 14:11:23 +00:00
|
|
|
gem 'carrierwave', '0.9.0'
|
2016-07-17 15:16:27 +00:00
|
|
|
gem 'aasm'
|
2014-10-06 14:36:55 +00:00
|
|
|
gem 'devise', '3.3.0' # 3.4.0 causes: uninitialized constant ActionController::Metal (NameError)
|
2013-05-17 03:44:26 +00:00
|
|
|
gem 'postgres-copy'
|
2014-02-28 00:24:55 +00:00
|
|
|
gem 'geokit'
|
2013-10-28 14:22:06 +00:00
|
|
|
gem 'geokit-rails'
|
|
|
|
|
gem 'postgres_ext'
|
2014-01-11 04:57:07 +00:00
|
|
|
gem 'resque'
|
|
|
|
|
gem 'resque-retry'
|
|
|
|
|
gem 'resque-failed-job-mailer' #, :path => "/Users/seth/workspace/resque_failed_job_mailer"
|
2014-01-21 14:51:03 +00:00
|
|
|
gem 'resque-lonely_job', '~> 1.0.0'
|
2014-03-18 22:50:06 +00:00
|
|
|
gem 'resque_mailer'
|
2021-02-01 06:10:01 +00:00
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
gem 'builder'
|
2014-02-27 18:38:02 +00:00
|
|
|
gem 'fog'
|
2014-04-05 18:52:12 +00:00
|
|
|
gem 'rest-client'
|
2014-05-27 03:52:59 +00:00
|
|
|
gem 'iso-639'
|
2014-08-19 01:41:44 +00:00
|
|
|
gem 'sanitize'
|
2016-04-27 03:22:49 +00:00
|
|
|
#gem 'influxdb'
|
2016-01-04 20:44:45 +00:00
|
|
|
gem 'sendgrid_toolkit', '>= 1.1.1'
|
2016-04-06 02:23:15 +00:00
|
|
|
gem 'stripe'
|
|
|
|
|
gem 'zip-codes'
|
2021-02-01 06:10:01 +00:00
|
|
|
|
2021-01-09 22:15:56 +00:00
|
|
|
|
2021-01-09 19:25:39 +00:00
|
|
|
gem 'elasticsearch'
|
2013-10-24 17:25:55 +00:00
|
|
|
|
2012-11-18 07:39:07 +00:00
|
|
|
group :test do
|
2017-01-17 18:24:49 +00:00
|
|
|
gem 'pry'
|
2014-02-13 16:41:50 +00:00
|
|
|
gem 'simplecov', '~> 0.7.1'
|
2014-02-13 21:17:47 +00:00
|
|
|
gem 'simplecov-rcov'
|
2016-07-17 15:16:27 +00:00
|
|
|
gem 'factory_girl', '4.5.0'
|
2013-11-23 06:03:22 +00:00
|
|
|
gem "rspec", "2.11"
|
2012-08-06 03:01:00 +00:00
|
|
|
gem 'spork', '0.9.0'
|
2016-07-17 15:16:27 +00:00
|
|
|
gem 'database_cleaner', '1.4.1'
|
2014-07-04 01:52:36 +00:00
|
|
|
gem 'faker', '1.3.0'
|
2014-04-15 15:17:44 +00:00
|
|
|
gem 'resque_spec' #, :path => "/home/jam/src/resque_spec/"
|
2014-04-08 17:15:49 +00:00
|
|
|
gem 'timecop'
|
2014-05-16 19:39:37 +00:00
|
|
|
gem 'rspec-prof'
|
2015-02-23 06:21:36 +00:00
|
|
|
gem 'time_difference'
|
2020-03-25 12:35:28 +00:00
|
|
|
# gem 'byebug'
|
2016-04-06 02:23:15 +00:00
|
|
|
gem 'stripe-ruby-mock'
|
|
|
|
|
|
2012-08-06 03:01:00 +00:00
|
|
|
end
|
|
|
|
|
|
2012-08-03 03:07:03 +00:00
|
|
|
# Specify your gem's dependencies in jam_ruby.gemspec
|
|
|
|
|
gemspec
|