Skip to content

Commit f4f2657

Browse files
committed
fix: Missing rspec task in Rakefile when releasing
The release workflow runs without development and test gems installed, but the rspec core is required to load the Rakefile.
1 parent aea7784 commit f4f2657

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ gemspec
66

77
gem 'rake'
88
gem 'rake-release', '~> 1.0'
9+
gem 'rspec', '~> 3.0'
910

1011
group :development do
1112
gem 'appraisal'
@@ -16,7 +17,6 @@ group :development do
1617
end
1718

1819
group :test do
19-
gem 'rspec', '~> 3.0'
2020
gem 'rspec-rails'
2121
gem 'simplecov'
2222
gem 'simplecov-cobertura'

0 commit comments

Comments
 (0)