Skip to content

Commit

Permalink
Merge pull request #3035 from rspec/remove-relish
Browse files Browse the repository at this point in the history
Remove references to Relish
  • Loading branch information
JonRowe committed Apr 17, 2023
1 parent c013587 commit 6374490
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 32 deletions.
1 change: 0 additions & 1 deletion Gemfile-custom.sample
@@ -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
Expand Up @@ -43,36 +43,6 @@ task :rdoc do
sh "yardoc"
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-core`.split.map(&:strip).include? args[:version]
puts "Version #{args[:version]} already exists"
else
sh "relish versions:add rspec/rspec-core:#{args[:version]}"
end
sh "relish push rspec/rspec-core:#{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-core"
end
end

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

task :verify_private_key_present do
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec/core/project_initializer/spec/spec_helper.rb
Expand Up @@ -61,7 +61,7 @@
# Limits the available syntax to the non-monkey patched syntax that is
# recommended. For more details, see:
# https://relishapp.com/rspec/rspec-core/docs/configuration/zero-monkey-patching-mode
# https://rspec.info/features/3-12/rspec-core/configuration/zero-monkey-patching-mode/
config.disable_monkey_patching!
# This setting enables warnings. It's recommended, but in some cases may
Expand Down

0 comments on commit 6374490

Please sign in to comment.