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

Commit e4ab01a

Browse files
committed
Remove references to Relish
1 parent 7cb968b commit e4ab01a

File tree

3 files changed

+1
-32
lines changed

3 files changed

+1
-32
lines changed

Gemfile-custom.sample

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
group :development do
22
gem 'interactive_rspec'
3-
gem 'relish', '~> 0.6.0'
43
gem 'guard-rspec', '~> 1.2.1'
54
gem 'growl', '1.0.3'
65
gem 'spork', '0.9.0'

Rakefile

-30
Original file line numberDiff line numberDiff line change
@@ -43,36 +43,6 @@ task :rdoc do
4343
sh "yardoc"
4444
end
4545

46-
with_changelog_in_features = lambda do |&block|
47-
begin
48-
sh "cp Changelog.md features/"
49-
block.call
50-
ensure
51-
sh "rm features/Changelog.md"
52-
end
53-
end
54-
55-
desc "Push docs/cukes to relishapp using the relish-client-gem"
56-
task :relish, :version do |_t, args|
57-
raise "rake relish[VERSION]" unless args[:version]
58-
59-
with_changelog_in_features.call do
60-
if `relish versions rspec/rspec-core`.split.map(&:strip).include? args[:version]
61-
puts "Version #{args[:version]} already exists"
62-
else
63-
sh "relish versions:add rspec/rspec-core:#{args[:version]}"
64-
end
65-
sh "relish push rspec/rspec-core:#{args[:version]}"
66-
end
67-
end
68-
69-
desc "Push to relish staging environment"
70-
task :relish_staging do
71-
with_changelog_in_features.call do
72-
sh "relish push rspec-staging/rspec-core"
73-
end
74-
end
75-
7646
task :default => [:spec, :cucumber, :rubocop]
7747

7848
task :verify_private_key_present do

lib/rspec/core/project_initializer/spec/spec_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
6262
# Limits the available syntax to the non-monkey patched syntax that is
6363
# recommended. For more details, see:
64-
# https://relishapp.com/rspec/rspec-core/docs/configuration/zero-monkey-patching-mode
64+
# https://rspec.info/features/3-12/rspec-core/configuration/zero-monkey-patching-mode/
6565
config.disable_monkey_patching!
6666
6767
# This setting enables warnings. It's recommended, but in some cases may

0 commit comments

Comments
 (0)