File tree Expand file tree Collapse file tree 4 files changed +12
-1
lines changed
Expand file tree Collapse file tree 4 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1+ language : ruby
2+ rvm :
3+ - 2.5.1
Original file line number Diff line number Diff line change @@ -4,11 +4,12 @@ source "https://rubygems.org"
44
55git_source ( :github ) { |repo_name | "https://github.com/#{ repo_name } " }
66
7+ gem "rake"
78gem "rubocop"
89gem "rspec-core" , github : "rspec/rspec-core"
910gem "rspec-support" , github : "rspec/rspec-support"
1011gem "rspec-expectations" , github : "rspec/rspec-expectations"
1112gem "rspec-mocks" , github : "rspec/rspec-mocks"
12- gem "pry-byebug"
13+ gem "pry-byebug" , platform : :mri
1314
1415gemspec
Original file line number Diff line number Diff line change 5656 byebug (~> 10.0 )
5757 pry (~> 0.10 )
5858 rainbow (3.0.0 )
59+ rake (12.3.1 )
5960 rubocop (0.58.2 )
6061 jaro_winkler (~> 1.5.1 )
6162 parallel (~> 1.10 )
@@ -73,6 +74,7 @@ PLATFORMS
7374
7475DEPENDENCIES
7576 pry-byebug
77+ rake
7678 rspec-core !
7779 rspec-expectations !
7880 rspec-mocks !
Original file line number Diff line number Diff line change 1+ require "rspec/core/rake_task"
2+
3+ RSpec ::Core ::RakeTask . new ( :spec )
4+
5+ task default : :spec
You can’t perform that action at this time.
0 commit comments