Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #69 from learn-co/gemfile-lock
Browse files Browse the repository at this point in the history
Fix Gemfile.lock versioning issues
  • Loading branch information
Tom Milewski authored Jul 31, 2020
2 parents a077f2a + 27df37d commit 9d8beeb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
3 changes: 1 addition & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ jobs:
name: Force Bundler Version
command: |
sudo gem update --system
echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV
source $BASH_ENV
gem install bundler
- run:
name: Install Dependencies
Expand Down
14 changes: 13 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
source 'https://rubygems.org'

gemspec
gem 'rspec', '~> 3.7'
gem 'netrc', '~> 0.11.0'
gem 'git', '~> 1.7'
gem 'oj', '~> 3.10'
gem 'faraday', '~> 1.0'
gem 'crack', '~> 0.4.3'
gem 'colorize', '~> 0.8.1'

group :development do
gem 'rake', '~> 13.0.1'
end

group :test do
gem 'rspec_junit_formatter', '~> 0.4.1'
end

gemspec
12 changes: 0 additions & 12 deletions learn-test.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,4 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib", "bin"]
spec.required_ruby_version = '>= 2.5.0'

spec.add_development_dependency "bundler", "~> 2.1.4"
spec.add_development_dependency "rake", "~> 13.0.1"
spec.add_development_dependency "rspec", "~> 3.8"

spec.add_runtime_dependency "rspec", "~> 3.0"
spec.add_runtime_dependency "netrc", "~> 0.11.0"
spec.add_runtime_dependency "git", "~> 1.7"
spec.add_runtime_dependency "oj", "~> 3.10"
spec.add_runtime_dependency "faraday", "~> 1.0"
spec.add_runtime_dependency "crack", "~> 0.4.3"
spec.add_runtime_dependency "colorize", "~> 0.8.1"
end

0 comments on commit 9d8beeb

Please sign in to comment.