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"
4
4
5
5
git_source ( :github ) { |repo_name | "https://github.com/#{ repo_name } " }
6
6
7
+ gem "rake"
7
8
gem "rubocop"
8
9
gem "rspec-core" , github : "rspec/rspec-core"
9
10
gem "rspec-support" , github : "rspec/rspec-support"
10
11
gem "rspec-expectations" , github : "rspec/rspec-expectations"
11
12
gem "rspec-mocks" , github : "rspec/rspec-mocks"
12
- gem "pry-byebug"
13
+ gem "pry-byebug" , platform : :mri
13
14
14
15
gemspec
Original file line number Diff line number Diff line change 56
56
byebug (~> 10.0 )
57
57
pry (~> 0.10 )
58
58
rainbow (3.0.0 )
59
+ rake (12.3.1 )
59
60
rubocop (0.58.2 )
60
61
jaro_winkler (~> 1.5.1 )
61
62
parallel (~> 1.10 )
@@ -73,6 +74,7 @@ PLATFORMS
73
74
74
75
DEPENDENCIES
75
76
pry-byebug
77
+ rake
76
78
rspec-core !
77
79
rspec-expectations !
78
80
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