jam-cloud/ruby/Gemfile

73 lines
1.7 KiB
Ruby
Raw Normal View History

2012-11-18 07:39:07 +00:00
#ruby=1.9.3
source 'http://rubygems.org'
unless ENV["LOCAL_DEV"] == "1"
source 'https://jamjam:blueberryjam@int.jamkazam.com/gems/'
end
2012-08-03 03:07:03 +00:00
devenv = ENV["BUILD_NUMBER"].nil?
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
gem 'pg', '0.17.1', :platform => [:mri, :mswin, :mingw]
2012-09-20 04:19:21 +00:00
gem 'jdbc_postgres', :platform => [:jruby]
gem 'activerecord', '3.2.22'
2013-12-29 04:51:35 +00:00
gem "activerecord-import", "~> 0.4.1"
gem 'uuidtools', '2.1.2'
gem 'bcrypt-ruby', '3.0.1'
gem 'ruby-protocol-buffers', '1.2.2'
gem 'eventmachine', '1.0.4'
gem 'amqp', '1.0.2'
2016-01-04 19:42:11 +00:00
gem 'kickbox'
gem 'will_paginate'
gem 'actionmailer', '3.2.22'
2014-03-19 16:37:03 +00:00
gem 'sendgrid', '1.2.0'
gem 'aws-sdk', '~> 1'
2014-04-03 14:11:23 +00:00
gem 'carrierwave', '0.9.0'
2013-02-06 13:12:58 +00:00
gem 'aasm', '3.0.16'
2014-10-06 14:36:55 +00:00
gem 'devise', '3.3.0' # 3.4.0 causes: uninitialized constant ActionController::Metal (NameError)
gem 'postgres-copy'
gem 'geokit'
2013-10-28 14:22:06 +00:00
gem 'geokit-rails'
gem 'postgres_ext'
gem 'resque'
gem 'resque-retry'
gem 'resque-failed-job-mailer' #, :path => "/Users/seth/workspace/resque_failed_job_mailer"
gem 'resque-lonely_job', '~> 1.0.0'
2014-03-18 22:50:06 +00:00
gem 'resque_mailer'
gem 'oj'
gem 'builder'
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-07-14 20:53:04 +00:00
gem 'rubyzip'
gem 'sanitize'
2014-12-30 23:10:16 +00:00
gem 'influxdb', '0.1.8'
gem 'recurly'
2013-10-24 17:25:55 +00:00
2012-11-18 07:39:07 +00:00
group :test do
gem 'simplecov', '~> 0.7.1'
gem 'simplecov-rcov'
gem 'factory_girl', '4.1.0'
2013-11-23 06:03:22 +00:00
gem "rspec", "2.11"
gem 'spork', '0.9.0'
gem 'database_cleaner', '1.3.0'
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/"
gem 'timecop'
2014-05-16 19:39:37 +00:00
gem 'rspec-prof'
2015-02-23 06:21:36 +00:00
gem 'time_difference'
gem 'byebug'
Merge feature/calendaring branch: commit 8023d6481cbadd52e58b9a4342ac7636ce1807e3 VRFS-3276 : Hook calendar creation into user controller API. Add test to verify. commit 3a35002a46f870e2c490b88b3187e0b1569494fd VRFS-3276 : Calendar cleanup job * Add cleanup method to calendar manager * Create a daily job. * Add calendar cleanup to that job. * Add CRON entry * Daily job/ calendar cleanup test cases * Fix calendar manager spec for new required attribute commit 3ff5910f1f019ae8bcb5afe72a31f1d38bb7d7a3 VRFS-3276 : Add a delete-calendar directive when RSVP is canceled. VRFS-3276 : Include path to partial. This fails depending on the method used to start the web server. commit d2441cbf57e50895ac3b40534873c5d529cb3c4f VRFS-3276 : Test new calendar features. Use icalendar gem in test mode only to more deeply verify calendar in strict mode. commit 9ac272a0fb1e58d8cf9f02e7a0e04caada41f659 VRFS-3276 : Calendar manager updates to include manual calendars. Some refactoring to keep common stuff in one place. commit b5d0c758f0dcae41a5f24635e9da9ce6eda56670 VRFS-3276 : Schema, model updates and new calendar model. commit 20472b6b26c88c04edb9bc698e0c06c549e12eb5 VRFS-3276 : Change initial submit behavior of RSVP dialog to display calendar info. The user can then close the dialog after this prompt. commit 77c99103d0221f20ea342169821b90fa987ecf93 VRFS-3276 : Calendar feed markup and styling. Included as partial. commit e632f48600ae23b5f742773310b2a4ac16ae4ee8 VRFS-3276 : Routes and controller implementation of user calendar ICS feed, which uses calendar manager. commit 21fd80a188eae771a65333566b804ade795a1e8c VRFS-3276 : Initial tests for calendar manager commit 92a2524c65abf7b540f9d50049a1b760a5a9927f VRFS-3276 : Calendar manager * Streamline logic * Enable recurring sessions through rrule * Implement method to create ics feed for user * Extract a type-safe scheduled duration method on music_session for external and internal use. commit b71ad3a4cdd943eb84748abaa85fec263b9af468 VRFS-3276 : Include calendar manager commit f8eaafd03647613dafec9f9422282f8613d08e9a VRFS-3276 : Calendar Manager - initial checkin * Create ICS events given individual parameters * Create calendar from music session * Also will create ICS “delete” events
2015-07-06 20:34:27 +00:00
gem 'icalendar'
end
2012-08-03 03:07:03 +00:00
# Specify your gem's dependencies in jam_ruby.gemspec
gemspec