jam-cloud/ruby/Gemfile

106 lines
2.2 KiB
Ruby

source 'https://rubygems.org'
unless ENV["LOCAL_DEV"] == "1"
source 'https://jamjam:blueberryjam@int.jamkazam.com/gems/'
end
ruby "3.4.8"
# Look for $WORKSPACE, otherwise use "workspace" as dev path.
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', "0.1.#{ENV["BUILD_NUMBER"]}"
ENV['NOKOGIRI_USE_SYSTEM_LIBRARIES'] ||= "true"
end
gem 'pg'
#gem 'jdbc_postgres', :platform => [:jruby]
gem 'activerecord', '~> 8.0.0'
gem 'railties', '~> 8.0.0'
gem 'actionmailer', '~> 8.0.0'
gem 'actionview', '~> 8.0.0'
# gem 'rails-observers' # Removed for Rails 8
# gem 'protected_attributes' # Removed for Rails 8
# PINNED TO SUPPORT BOTH 2.3.1 and 2.4.1 Ruby simultaneously
# This should be the same in ruby/admin/web/websocket-gateway
#######
gem 'nokogiri'
gem 'sprockets'
gem 'fog-brightbox'
gem 'faraday'
gem 'ruby-prof'
gem 'rubyzip'
gem 'recurly', '~> 2.19'
gem 'icalendar'
gem 'email_validator'
gem 'redis'
gem 'redis-namespace'
gem 'oj'
#######
gem "activerecord-import"
gem "auto_strip_attributes"
gem "json"
gem 'uuidtools'
gem 'bcrypt'
gem 'bcrypt-ruby' #, '3.0.1'
gem 'ruby-protocol-buffers'
gem 'eventmachine'
gem 'amqp'
gem 'kickbox'
gem 'will_paginate'
gem 'sendgrid', '1.2.0'
gem 'aws-sdk-s3'
gem 'carrierwave'
gem 'aasm'
gem 'devise'
gem 'postgres-copy'
gem 'geokit'
gem 'geokit-rails'
gem 'resque'
gem 'resque-retry'
gem 'resque-failed-job-mailer' #, :path => "/Users/seth/workspace/resque_failed_job_mailer"
gem 'resque-lonely_job'
gem 'resque_mailer'
gem 'builder'
gem 'fog-aws'
gem 'rest-client'
gem 'iso-639'
gem 'sanitize'
#gem 'influxdb'
gem 'sendgrid_toolkit', '>= 1.1.1'
gem 'stripe'
gem 'zip-codes'
gem 'elasticsearch'
gem 'logging'
group :test do
gem 'pry'
gem 'simplecov'
gem 'simplecov-rcov'
gem 'factory_bot' # Renamed from factory_girl
gem "rspec"
gem 'spork', '0.9.0'
gem 'database_cleaner'
gem 'faker'
gem 'resque_spec' #, :path => "/home/jam/src/resque_spec/"
gem 'timecop'
gem 'rspec-prof'
gem 'time_difference'
# gem 'byebug'
gem 'stripe-ruby-mock'
gem 'webmock'
end
# Specify your gem's dependencies in jam_ruby.gemspec
gemspec