Skip to content

Commit

Permalink
fixed dependency order
Browse files Browse the repository at this point in the history
  • Loading branch information
thilo committed Aug 27, 2020
1 parent 1b715da commit b3c0352
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions good_job.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = ">= 2.4.0"

spec.add_dependency "activejob", ">= 5.1.0"
spec.add_dependency "activerecord", ">= 5.1.0"
spec.add_dependency "concurrent-ruby", ">= 1.0.2"
spec.add_dependency "pg", ">= 1.0.0"
spec.add_dependency "railties", ">= 5.1.0"
spec.add_dependency "activerecord", ">= 5.1.0"
spec.add_dependency "activejob", ">= 5.1.0"
spec.add_dependency "thor", ">= 0.14.1"

spec.add_development_dependency "appraisal"
Expand Down

0 comments on commit b3c0352

Please sign in to comment.