diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 759c363..2ceea93 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,7 @@ Clone the repository from GitHub. ``` -$ git clone https://github.com/sstephenson/execjs +$ git clone https://github.com/rails/execjs ``` Now just cd into the directory and run `bundle install` to install the diff --git a/MAINTAINING.md b/MAINTAINING.md index 4ffc4e6..092f665 100644 --- a/MAINTAINING.md +++ b/MAINTAINING.md @@ -9,7 +9,7 @@ version "2.x.x" bump is in order. ### Make a release commit To prepare the release commit, edit the -[lib/execjs/version.rb](https://github.com/sstephenson/execjs/blob/master/lib/execjs/version.rb) +[lib/execjs/version.rb](https://github.com/rails/execjs/blob/master/lib/execjs/version.rb) `VERSION` value. Then make a single commit with the description as "ExecJS 2.x.x". Finally, tag the commit with `v2.x.x`. diff --git a/execjs.gemspec b/execjs.gemspec index e52cf95..44734e8 100644 --- a/execjs.gemspec +++ b/execjs.gemspec @@ -5,7 +5,7 @@ Gem::Specification.new do |s| s.name = "execjs" s.version = ExecJS::VERSION - s.homepage = "https://github.com/sstephenson/execjs" + s.homepage = "https://github.com/rails/execjs" s.summary = "Run JavaScript code from Ruby" s.description = "ExecJS lets you run JavaScript code from Ruby." diff --git a/lib/execjs/runtimes.rb b/lib/execjs/runtimes.rb index f646db6..3d3c990 100644 --- a/lib/execjs/runtimes.rb +++ b/lib/execjs/runtimes.rb @@ -43,7 +43,7 @@ module ExecJS def self.autodetect from_environment || best_available || raise(RuntimeUnavailable, "Could not find a JavaScript runtime. " + - "See https://github.com/sstephenson/execjs for a list of available runtimes.") + "See https://github.com/rails/execjs for a list of available runtimes.") end def self.best_available