Skip to content

Commit

Permalink
Change gemspec to include rake and rspec as dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmurach committed Oct 17, 2020
1 parent 339096c commit 26e10a4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 1 addition & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ source "https://rubygems.org"

gemspec

gem "rake", "~> 12.0"
gem "rspec", "~> 3.0"
gem "pastel", "~> 0.7.2"
gem "pastel", "~> 0.8.0"
gem "simplecov", "~> 0.16.1"
gem "coveralls", "~> 0.8.22"

Expand Down
9 changes: 7 additions & 2 deletions tty-spinner.gemspec
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

require_relative "lib/tty/spinner/version"

Gem::Specification.new do |spec|
Expand All @@ -19,11 +21,14 @@ Gem::Specification.new do |spec|
"source_code_uri" => "https://github.com/piotrmurach/tty-spinner"
}
end
spec.files = Dir["lib/**/*", "README.md", "CHANGELOG.md", "LICENSE.txt"]
spec.extra_rdoc_files = ["README.md", "CHANGELOG.md"]
spec.files = Dir["lib/**/*"]
spec.extra_rdoc_files = Dir["README.md", "CHANGELOG.md", "LICENSE.txt"]
spec.bindir = "exe"
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.0.0"

spec.add_dependency "tty-cursor", "~> 0.7"

spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", ">= 3.0"
end

0 comments on commit 26e10a4

Please sign in to comment.