Skip to content

Commit

Permalink
Using Gemfile for all dependencies
Browse files Browse the repository at this point in the history
Got some tips from reading Jeweler issue [#152](technicalpickles/jeweler#152), so decided to remove the link to the gemspec from the Gemfile, and have all the necessary dependencies in the Gemfile
  • Loading branch information
Kyrre Havik Eriksen committed Mar 10, 2016
1 parent f7d962a commit 4db718f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 23 deletions.
6 changes: 2 additions & 4 deletions Gemfile
@@ -1,6 +1,4 @@
source 'https://rubygems.org'

gem 'jeweler'

# Specify dependencies in send_ncsa.gemspec
gemspec
gem 'jeweler', '~> 2.0', '>= 2.0.1'
gem 'rspec', '~> 3.4'
38 changes: 19 additions & 19 deletions Gemfile.lock
@@ -1,10 +1,3 @@
PATH
remote: .
specs:
send_nsca (0.6.0)
jeweler
send_nsca

GEM
remote: https://rubygems.org/
specs:
Expand Down Expand Up @@ -52,17 +45,22 @@ GEM
multi_xml (~> 0.5)
rack (~> 1.2)
rack (1.5.2)
rake (10.3.2)
rake (10.5.0)
rdoc (4.1.1)
json (~> 1.4)
rspec (2.99.0)
rspec-core (~> 2.99.0)
rspec-expectations (~> 2.99.0)
rspec-mocks (~> 2.99.0)
rspec-core (2.99.2)
rspec-expectations (2.99.2)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.99.3)
rspec (3.4.0)
rspec-core (~> 3.4.0)
rspec-expectations (~> 3.4.0)
rspec-mocks (~> 3.4.0)
rspec-core (3.4.4)
rspec-support (~> 3.4.0)
rspec-expectations (3.4.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.4.0)
rspec-mocks (3.4.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.4.0)
rspec-support (3.4.1)
thread_safe (0.3.4)
thread_safe (0.3.4-java)

Expand All @@ -71,6 +69,8 @@ PLATFORMS
ruby

DEPENDENCIES
jeweler
rspec (>= 1.2.9)
send_nsca!
jeweler (~> 2.0, >= 2.0.1)
rspec (~> 3.4)

BUNDLED WITH
1.11.2

0 comments on commit 4db718f

Please sign in to comment.