Skip to content
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1546 from rspec/remove-relish
Browse files Browse the repository at this point in the history
Remove mentions to Relish
  • Loading branch information
JonRowe committed Apr 17, 2023
1 parent e664ebd commit 8d50b95
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 31 deletions.
1 change: 0 additions & 1 deletion Gemfile-custom.sample
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
group :development do
gem 'interactive_rspec'
gem 'relish', '~> 0.6.0'
gem 'guard-rspec', '~> 1.2.1'
gem 'growl', '1.0.3'
gem 'spork', '0.9.0'
Expand Down
30 changes: 0 additions & 30 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,36 +30,6 @@ namespace :clobber do
end
end

with_changelog_in_features = lambda do |&block|
begin
sh "cp Changelog.md features/"
block.call
ensure
sh "rm features/Changelog.md"
end
end

desc "Push docs/cukes to relishapp using the relish-client-gem"
task :relish, :version do |_t, args|
raise "rake relish[VERSION]" unless args[:version]

with_changelog_in_features.call do
if `relish versions rspec/rspec-mocks`.split.map(&:strip).include? args[:version]
puts "Version #{args[:version]} already exists"
else
sh "relish versions:add rspec/rspec-mocks:#{args[:version]}"
end
sh "relish push rspec/rspec-mocks:#{args[:version]}"
end
end

desc "Push to relish staging environment"
task :relish_staging do
with_changelog_in_features.call do
sh "relish push rspec-staging/rspec-mocks"
end
end

task :default => [:spec, :cucumber]

task :verify_private_key_present do
Expand Down

0 comments on commit 8d50b95

Please sign in to comment.