Skip to content

Commit

Permalink
Merge pull request #95 from jgarber623/move-development-dependencies-…
Browse files Browse the repository at this point in the history
…to-gemfile

Move development dependencies to `Gemfile`
  • Loading branch information
radar authored May 15, 2024
2 parents 95ef604 + 45fc103 commit 78218ac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
8 changes: 0 additions & 8 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,6 @@
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.

# Offense count: 5
# Configuration parameters: EnforcedStyle, AllowedGems, Include.
# SupportedStyles: Gemfile, gems.rb, gemspec
# Include: **/*.gemspec, **/Gemfile, **/gems.rb
Gemspec/DevelopmentDependencies:
Exclude:
- 'humanize.gemspec'

# Offense count: 1
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max.
Metrics/AbcSize:
Expand Down
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,9 @@
source 'https://rubygems.org'

gemspec

gem 'mutant'
gem 'mutant-rspec'
gem 'pry-byebug'
gem 'rspec'
gem 'rubocop'
5 changes: 0 additions & 5 deletions humanize.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ Gem::Specification.new do |s|
s.files = Dir["lib/**/*"].reject { |f| File.directory?(f) }
s.files += ["humanize.gemspec", "LICENSE.md", "README.markdown"]

s.add_development_dependency 'mutant'
s.add_development_dependency 'mutant-rspec'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop'
s.metadata['rubygems_mfa_required'] = 'true'
s.metadata['bug_tracker_uri'] = "#{s.homepage}/issues"
s.metadata['source_code_uri'] = "#{s.homepage}/tree/v#{s.version}"
Expand Down

0 comments on commit 78218ac

Please sign in to comment.