From 9dcd3212bbefbcb3820e7959f371e1576b09bb57 Mon Sep 17 00:00:00 2001 From: "Min.Kim" Date: Thu, 1 Feb 2018 18:16:23 +0000 Subject: [PATCH] Use one source for gem dependencies --- Gemfile | 25 +++---------------------- Gemfile.lock | 14 ++++++++++---- 2 files changed, 13 insertions(+), 26 deletions(-) diff --git a/Gemfile b/Gemfile index 9c55868..bcf9e56 100644 --- a/Gemfile +++ b/Gemfile @@ -1,23 +1,4 @@ -# Add gem dependencies here. -gem "activesupport", "~> 5.0" -gem "multi_json", "~> 1.12" -gem "oj", "~> 3.3" +source 'https://rubygems.org' -# needed to send active support notifications to skylight -gem "skylight", "~> 1.3" - -# needed because of the extension/has_one.rb -gem "activerecord", "~> 5.0" - -# Add dependencies to develop and test the gem here -group :development do - gem "rspec", "~> 3.5.0" - gem "rspec-benchmark", "~> 0.3.0" - gem "rdoc", "~> 3.12" - gem "bundler", "~> 1.0" - gem "juwelier", "~> 2.1.0" - gem "simplecov", ">= 0" - gem "byebug" - gem "active_model_serializers", "~> 0.10.4" - gem "sqlite3", "~> 1.3" -end +# Specify your gem's dependencies in fast_jsonapi.gemspec +gemspec diff --git a/Gemfile.lock b/Gemfile.lock index c723e24..79f257e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,3 +1,12 @@ +PATH + remote: . + specs: + fast_jsonapi (1.0.16) + activerecord (~> 5.0) + activesupport (~> 5.0) + multi_json (~> 1.12) + oj (~> 3.3) + GEM remote: https://rubygems.org/ specs: @@ -134,13 +143,10 @@ PLATFORMS DEPENDENCIES active_model_serializers (~> 0.10.4) - activerecord (~> 5.0) - activesupport (~> 5.0) bundler (~> 1.0) byebug + fast_jsonapi! juwelier (~> 2.1.0) - multi_json (~> 1.12) - oj (~> 3.3) rdoc (~> 3.12) rspec (~> 3.5.0) rspec-benchmark (~> 0.3.0)