Skip to content

Commit

Permalink
Move development dependencies from gemspec to gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremycole committed Nov 1, 2024
1 parent e67becd commit dfe284f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
3 changes: 0 additions & 3 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,3 @@ Style/BitwisePredicate:

RSpec/SpecFilePathFormat:
Enabled: false

Gemspec/DevelopmentDependencies:
EnforcedStyle: gemspec
9 changes: 9 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,13 @@

source "https://rubygems.org"

group :development do
gem "byebug", require: false
gem "rspec", require: false
gem "rubocop", require: false
gem "rubocop-rspec", require: false
gem "rubocop-shopify", "~> 2.9.0", require: false
gem "sorbet", require: false
end

gemspec
7 changes: 0 additions & 7 deletions avruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@ Gem::Specification.new do |s|
s.executables = ["avruby_shell"]
s.require_path = "lib"

s.add_development_dependency("byebug")
s.add_development_dependency("rspec")
s.add_development_dependency("rubocop")
s.add_development_dependency("rubocop-rspec")
s.add_development_dependency("rubocop-shopify", "~> 2.9.0")
s.add_development_dependency("sorbet")

s.add_dependency("intel_hex", "~> 0.6.0")
s.add_dependency("sorbet-runtime", "~> 0.5.3")
s.metadata["rubygems_mfa_required"] = "true"
Expand Down

0 comments on commit dfe284f

Please sign in to comment.