This repository was archived by the owner on Nov 30, 2024. It is now read-only.
File tree 3 files changed +1
-32
lines changed
lib/rspec/core/project_initializer/spec
3 files changed +1
-32
lines changed Original file line number Diff line number Diff line change 1
1
group :development do
2
2
gem 'interactive_rspec'
3
- gem 'relish', '~> 0.6.0'
4
3
gem 'guard-rspec', '~> 1.2.1'
5
4
gem 'growl', '1.0.3'
6
5
gem 'spork', '0.9.0'
Original file line number Diff line number Diff line change @@ -43,36 +43,6 @@ task :rdoc do
43
43
sh "yardoc"
44
44
end
45
45
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
-
76
46
task :default => [ :spec , :cucumber , :rubocop ]
77
47
78
48
task :verify_private_key_present do
Original file line number Diff line number Diff line change 61
61
62
62
# Limits the available syntax to the non-monkey patched syntax that is
63
63
# 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/
65
65
config.disable_monkey_patching!
66
66
67
67
# This setting enables warnings. It's recommended, but in some cases may
You can’t perform that action at this time.
0 commit comments