Skip to content

Commit aa2aace

Browse files
Updated references from rspec to rspec-metagem to reflect current naming of repositories.
1 parent 2f0140f commit aa2aace

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

README.markdown

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,8 @@ like this:
6161
After the initial clone you can run `rake git:pull` from the rspec-dev
6262
directory to update all of the rspec repos (in repos). Note that the update script
6363
will look for the repos all under the same user as rspec-dev, so if you have forked this repo,
64-
you need to fork them all. The rspec metagem is now available [here](https://github.com/rspec/rspec-metagem)
65-
and you will need to rename your fork rspec,
66-
64+
you need to fork them all.
65+
6766
Run `rake -T` to see the available tasks for dev mode.
6867

6968
# Contributing

Rakefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ require 'time'
66
require 'date'
77
require 'erb'
88

9-
Projects = ['rspec', 'rspec-core', 'rspec-expectations', 'rspec-mocks', 'rspec-rails', 'rspec-support']
10-
UnDocumentedProjects = %w[ rspec rspec-support ]
9+
Projects = ['rspec-metagem', 'rspec-core', 'rspec-expectations', 'rspec-mocks', 'rspec-rails', 'rspec-support']
10+
UnDocumentedProjects = %w[ rspec-metagem rspec-support ]
1111
BaseRspecPath = Pathname.new(Dir.pwd)
1212
ReposPath = BaseRspecPath.join('repos')
1313
MAX_PROJECT_NAME_LENGTH = Projects.map(&:length).max
@@ -563,7 +563,7 @@ namespace :common_plaintext_files do
563563

564564
COMMON_PLAINTEXT_EXCLUSIONS =
565565
{
566-
'rspec' =>
566+
'rspec-metagem' =>
567567
%w[BUILD_DETAIL.md.erb CONTRIBUTING.md.erb DEVELOPMENT.md.erb ISSUE_TEMPLATE.md.erb REPORT_TEMPLATE.md],
568568
'rspec-rails' => %w[ISSUE_TEMPLATE.md.erb REPORT_TEMPLATE.md]
569569
}
@@ -671,7 +671,7 @@ end
671671

672672
desc "Lists stats generated from the logs for the provided commit ranges"
673673
task :version_stats, :commit_ranges do |t, args|
674-
projects = Projects - ["rspec"]
674+
projects = Projects - ["rspec-metagem"]
675675

676676
puts
677677
puts "### Combined: "
@@ -717,7 +717,7 @@ def confirm_branch_name(name, opts={})
717717
end
718718

719719
def each_project_with_common_build(opts={}, &b)
720-
except = %w[ rspec ]
720+
except = %w[ rspec-metagem ]
721721
except += Array(opts[:except])
722722
except << "rspec-support" if BASE_BRANCH_MAJOR_VERSION < 3
723723
each_project(:except => except, &b)

0 commit comments

Comments
 (0)