Remove some forced dependency versioning
This commit is contained in:
parent
0d9fabbbb0
commit
bf47233f8b
3 changed files with 2 additions and 5 deletions
4
.github/workflows/ruby.yml
vendored
4
.github/workflows/ruby.yml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
||||||
ruby-version: 2.6.x
|
ruby-version: 2.6.x
|
||||||
- name: Build and test with Rake
|
- name: Build and test with Rake
|
||||||
run: |
|
run: |
|
||||||
gem install bundler -v 1.16
|
gem install bundler
|
||||||
bundle install --jobs 4 --retry 3
|
bundle install --jobs 4 --retry 3
|
||||||
bundle exec rubocop
|
bundle exec rubocop
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ jobs:
|
||||||
ruby-version: ${{ matrix.ruby_version }}
|
ruby-version: ${{ matrix.ruby_version }}
|
||||||
- name: Build and test with Rake
|
- name: Build and test with Rake
|
||||||
run: |
|
run: |
|
||||||
gem install bundler -v 1.16
|
gem install bundler
|
||||||
bundle install --jobs 4 --retry 3
|
bundle install --jobs 4 --retry 3
|
||||||
bundle exec rspec
|
bundle exec rspec
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,6 @@ Gem::Specification.new do |spec|
|
||||||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
||||||
spec.require_paths = ["lib"]
|
spec.require_paths = ["lib"]
|
||||||
|
|
||||||
spec.add_development_dependency "bundler", "~> 1.16"
|
|
||||||
spec.add_development_dependency "pry"
|
spec.add_development_dependency "pry"
|
||||||
spec.add_development_dependency "rake", "~> 10.0"
|
spec.add_development_dependency "rake", "~> 10.0"
|
||||||
spec.add_development_dependency "rspec", "~> 3.0"
|
spec.add_development_dependency "rspec", "~> 3.0"
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
|
|
||||||
ruby '2.6.3'
|
|
||||||
|
|
||||||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
||||||
gem 'rails', '~> 6.0.0'
|
gem 'rails', '~> 6.0.0'
|
||||||
# Use Puma as the app server
|
# Use Puma as the app server
|
||||||
|
|
Loading…
Reference in a new issue