Skip to content

Commit

Permalink
Merge pull request #319 from zooniverse/order-gems-in-gemfile
Browse files Browse the repository at this point in the history
reorganize gems in Gemfile for easy search of gems
  • Loading branch information
yuenmichelle1 committed May 22, 2024
2 parents 0bf19bb + 6422601 commit 41575de
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
source 'https://rubygems.org'

gem 'rails', '~> 4.2'
gem 'rack-cors', '~> 1.0.5'
gem 'aws-sdk', '~> 2.3.7'
gem 'faraday'
gem 'faraday_middleware'
gem 'honeybadger', '~> 4.5.0'
gem 'json-schema', '~> 2.8'
gem 'json-schema_builder', '~> 0.0.8'
gem 'logstasher', '~> 0.9.0'
gem 'newrelic_rpm'
gem 'pg', '~> 0.21'
gem 'puma'
gem 'pundit', '~> 1.1.0'
gem 'rack-cors', '~> 1.0.5'
gem 'rails', '~> 4.2'
gem 'redis', '~> 3.3.0'
gem 'restpack_serializer', git: 'https://github.com/zooniverse/restpack_serializer.git', branch: 'talk-api-version', ref: '637aaaf85e'
gem 'schema_plus_pg_indexes', '~> 0.1.12'
gem 'sidekiq', '< 6'
gem 'sidekiq-congestion', '~> 0.1.0'
gem 'sidetiq', '~> 0.7.2'
gem 'restpack_serializer', git: 'https://github.com/zooniverse/restpack_serializer.git', branch: 'talk-api-version', ref: '637aaaf85e'
gem 'json-schema', '~> 2.8'
gem 'json-schema_builder', '~> 0.0.8'
gem 'aws-sdk', '~> 2.3.7'
gem 'faraday'
gem 'faraday_middleware'
gem 'pundit', '~> 1.1.0'
gem 'spring', '~> 1.7.1', group: :development
gem 'newrelic_rpm'
gem 'honeybadger', '~> 4.5.0'
gem 'logstasher', '~> 0.9.0'
gem 'zoo_stream', '~> 1.0'
gem 'schema_plus_pg_indexes', '~> 0.1.12'
gem 'puma'

group :test, :development do
gem 'rspec-rails', '~> 3.4.2'
gem 'rspec-its', '~> 1.2.0'
gem 'spring-commands-rspec', '~> 1.0.4'
gem 'benchmark-ips'
gem 'factory_girl_rails', '~> 4.7.0'
gem 'guard', '~> 2.14.0'
gem 'guard-rspec', '~> 4.6.5'
gem 'timecop'
gem 'pry', '~> 0.11.3'
gem 'benchmark-ips'
gem 'rspec-its', '~> 1.2.0'
gem 'rspec-rails', '~> 3.4.2'
gem 'spring-commands-rspec', '~> 1.0.4'
gem 'timecop'
end

group :test do
gem 'webmock', '~> 3.4'
gem 'codeclimate-test-reporter', '~> 0.5'
gem 'simplecov', '~> 0.11.2'
end
gem 'webmock', '~> 3.4'
end

0 comments on commit 41575de

Please sign in to comment.