Skip to content

Commit

Permalink
Add pg gem as explicit depenency (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
bensheldon committed Mar 7, 2020
1 parent e894937 commit 0e74567
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Install bundler
run: gem update --system && gem install bundler -v $(grep -A 1 "BUNDLED WITH" Gemfile.lock | tail -1 | tr -d " ")
- name: Install Gemfile gems
run: bundle install && bundle clean
run: bundle install
- name: Install Appraisal gems
run: bundle exec appraisal install
# /Dependencies
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ PATH
specs:
good_job (0.2.0)
concurrent-ruby (>= 1.0.2)
pg (>= 1.0.0)
rails (>= 5.1.0)
thor (>= 0.14.1)

Expand Down Expand Up @@ -113,7 +114,7 @@ GEM
octokit (4.16.0)
faraday (>= 0.9)
sawyer (~> 0.8.0, >= 0.5.3)
pg (0.21.0)
pg (1.2.2)
public_suffix (4.0.3)
rack (2.1.2)
rack-test (1.1.0)
Expand Down Expand Up @@ -192,7 +193,6 @@ DEPENDENCIES
gem-release
github_changelog_generator
good_job!
pg
rspec-rails

BUNDLED WITH
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5.1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ PATH
specs:
good_job (0.2.0)
concurrent-ruby (>= 1.0.2)
pg (>= 1.0.0)
rails (>= 5.1.0)
thor (>= 0.14.1)

Expand Down Expand Up @@ -168,7 +169,6 @@ DEPENDENCIES
gem-release
github_changelog_generator
good_job!
pg
rails (~> 5.1.0)
rspec-rails

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5.2.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ PATH
specs:
good_job (0.2.0)
concurrent-ruby (>= 1.0.2)
pg (>= 1.0.0)
rails (>= 5.1.0)
thor (>= 0.14.1)

Expand Down Expand Up @@ -176,7 +177,6 @@ DEPENDENCIES
gem-release
github_changelog_generator
good_job!
pg
rails (~> 5.2.0)
rspec-rails

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6.0.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ PATH
specs:
good_job (0.2.0)
concurrent-ruby (>= 1.0.2)
pg (>= 1.0.0)
rails (>= 5.1.0)
thor (>= 0.14.1)

Expand Down Expand Up @@ -192,7 +193,6 @@ DEPENDENCIES
gem-release
github_changelog_generator
good_job!
pg
rails (~> 6.0.0)
rspec-rails

Expand Down
2 changes: 1 addition & 1 deletion good_job.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ Gem::Specification.new do |spec|
spec.executables = "good_job"

spec.add_dependency "concurrent-ruby", ">= 1.0.2"
spec.add_dependency "pg", ">= 1.0.0"
spec.add_dependency "rails", ">= 5.1.0"
spec.add_dependency "thor", ">= 0.14.1"
spec.add_development_dependency "appraisal"
spec.add_development_dependency "database_cleaner"
spec.add_development_dependency "gem-release"
spec.add_development_dependency "github_changelog_generator"
spec.add_development_dependency "pg"
spec.add_development_dependency "rspec-rails"
end

0 comments on commit 0e74567

Please sign in to comment.