Skip to content

Commit 7eefbba

Browse files
authored
Merge pull request #239 from rspec/unlink-rspec-rails
rspec-rails is no longer in sync with other gems version
2 parents 1e0edbc + 54a5fd8 commit 7eefbba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Rakefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ require 'erb'
88

99
Projects = ['rspec', 'rspec-core', 'rspec-expectations', 'rspec-mocks', 'rspec-rails', 'rspec-support']
1010
UnDocumentedProjects = %w[ rspec rspec-support ]
11+
SemverUnlinkedProjects = ['rspec-rails']
1112
BaseRspecPath = Pathname.new(Dir.pwd)
1213
ReposPath = BaseRspecPath.join('repos')
1314

@@ -63,7 +64,7 @@ task :update_docs, [:version, :branch, :website_path] do |t, args|
6364
abort "You must have ag installed to generate docs" if `which ag` == ""
6465
args.with_defaults(:website_path => "../rspec.github.io")
6566
run_command "git checkout #{args[:branch]} && git pull --rebase"
66-
each_project :except => UnDocumentedProjects do |project|
67+
each_project :except => (UnDocumentedProjects + SemverUnlinkedProjects) do |project|
6768
cmd = "bundle install && \
6869
RUBYOPT='-I#{args[:website_path]}/lib' bundle exec yard \
6970
--yardopts .yardopts \

0 commit comments

Comments
 (0)