rubyfarm-bisect 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ab767fdb377d6485ce6aab31942107d0babfa8cb7589eb5bcfe8a2fee658b3c
4
- data.tar.gz: af26e69390cd64818e9ccc4c76e0b955fa76f897882610e0ce1705ebfbd47c29
3
+ metadata.gz: 3d87bdaa31a2146ef896a8444cd84659883f9f35f01a93368103393419cced7b
4
+ data.tar.gz: 1726f6aa6f7231ac9def53605f14779fc7c9560a25e5d0b930328786b34441f4
5
5
  SHA512:
6
- metadata.gz: f972d7a415061e2c02f27fae6047d58a69bca93e3ebc6a4645205b5697b1ebb00483de0c64f4ad8822754f57e40ce14b9a8ab91b82c713a76e7849834c6d0676
7
- data.tar.gz: 53afc098affd5a753e7ac747aa52505ec79d309e98f8d50b8d74c7ca02dedb2285752b75e8673113e91895de26241a4c07178e6c5b61d9ec4321fc26161e220d
6
+ metadata.gz: afb100611f585881435bd92e9c6007f27d3ec0c34c99845df6ed43237a52c7289c7fb6ffa53bc81490c54b54490b237f00e66cc352c73e2fb3e657bceb9849ed
7
+ data.tar.gz: fceff51daafd2a858344df52bd67704819a1aa7eb14409d54655fee31c32eb044d26ff00da8b720c0468d1fb09e13ab0af1c1ce4f574b3186dc77b77e47a046d
data/README.md CHANGED
@@ -49,7 +49,7 @@ $ rubyfarm-bisect -g 7c1b30a6 -b trunk ruby -e '<your test code>'
49
49
  ```
50
50
 
51
51
  `-g` is a good commit, and `-b` is a bad commit.
52
- The arguments must be a SVN revision (e.g., "r60000"), or a commit hash of [git.ruby-lang.org/ruby.git](https://git.ruby-lang.org/ruby.git) (e.g., 7c1b30a6).
52
+ The arguments must be a SVN revision (e.g., "r60000"), or a commit hash of [github.com/ruby/ruby.git](https://github.com/ruby/ruby.git) (e.g., 7c1b30a6).
53
53
 
54
54
  You don't have to worry about which is good and bad:
55
55
 
@@ -58,11 +58,11 @@ You don't have to worry about which is good and bad:
58
58
 
59
59
  ### `-u`: specify a git url
60
60
 
61
- This tool clones [the git repository of ruby](https://git.ruby-lang.org/ruby.git) into temporary directory, which takes some minutes.
61
+ This tool clones [the git repository of ruby](https://github.com/ruby/ruby.git) into temporary directory, which takes some minutes.
62
62
  To make it fast, you can use your local repository:
63
63
 
64
64
  ```
65
- $ git clone https://git.ruby-lang.org/ruby /path/to/local/git/repo
65
+ $ git clone https://github.com/ruby/ruby.git /path/to/local/git/repo
66
66
  $ rubyfarm-bisect -u /path/to/local/git/repo ruby -e '<your test code>'
67
67
  ```
68
68
 
@@ -4,10 +4,10 @@ require "tmpdir"
4
4
  require "optparse"
5
5
  require "open3"
6
6
 
7
- Version = "1.1.2"
7
+ Version = "1.1.3"
8
8
 
9
9
  FIRST_COMMIT = "7c1b30a602ab109d8d5388d7dfb3c5b180ba24e1" # r57410
10
- ORIGINAL_GIT_PATH = "https://git.ruby-lang.org/ruby.git"
10
+ ORIGINAL_GIT_PATH = "https://github.com/ruby/ruby.git"
11
11
  CORE = File.join(__dir__, "rubyfarm-bisect-core")
12
12
 
13
13
  good_commit = FIRST_COMMIT
@@ -16,6 +16,6 @@ Gem::Specification.new do |spec|
16
16
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
17
17
  spec.require_paths = ["lib"]
18
18
 
19
- spec.add_development_dependency "bundler", "~> 1.16"
20
- spec.add_development_dependency "rake", "~> 10.0"
19
+ spec.add_development_dependency "bundler", "~> 2"
20
+ spec.add_development_dependency "rake"
21
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyfarm-bisect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yusuke Endoh
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-03-24 00:00:00.000000000 Z
11
+ date: 2020-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.16'
19
+ version: '2'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.16'
26
+ version: '2'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '10.0'
33
+ version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '10.0'
40
+ version: '0'
41
41
  description: rubyfarm-bisect allows you to do "git bisect" MRI revisions without compilation.
42
42
  email:
43
43
OSZAR »