rubocop_challenger 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7b2f993a9cb1e6ace979764943f53ab98e25d593f3e9851286876ad2d22b224
4
- data.tar.gz: 90e946d56b32ff85a7fa6b6bbd0e5e8cd2b5d820f8c175f16c43fcb3e2ab1e54
3
+ metadata.gz: 252260c3691779a498961865b583b2274f5d961264a2e59a63635442e4734a4a
4
+ data.tar.gz: 7ee8534542acb8ca0a32a50435aa9b0d4dec16ca6258cc9c8b2623b8b80bcaf1
5
5
  SHA512:
6
- metadata.gz: 4ab90c4cdb9f1d437fdd65befe1ea155cc807923ef7b4de4a1ca49da90101caa4379e95d54de66cdd55ade3362ea13c19beae1168ad92dfd6b422913e6f0e81b
7
- data.tar.gz: 5cbbaf78ca012ee21c68cc2495d82ded57f9c2bed6136fba5fd0051304392da7b77b2f44468cfe21d8015197bb2d4088a4b5f953d3c3e7d79dd861f42accfbb9
6
+ metadata.gz: e0a0215bc77a300f97f1e1fdba58767ad868c6e723d9a6783dbb288ceef4a29d49dad6c8958c6754b267df1d973ceae61d758557cbab8e8e26d7717fe83e1971
7
+ data.tar.gz: 6ce3ac68d4d3084cd9cf29023b6197600192c93abdbf235af3348cfa7cd810c24edfd7b6b344f31f6b8888cd8d29a2b387a34c58eb7de592acaf26c3560e5244
data/.circleci/config.yml CHANGED
@@ -120,7 +120,13 @@ jobs:
120
120
  - *bundle_install
121
121
  - *save_bundle_install_cache
122
122
  - run: bundle exec rake install
123
- - run: bundle exec bin/jailbreak
123
+ - run:
124
+ name: Jailbreak
125
+ command: |
126
+ git config --global user.email "testing@example.com"
127
+ git config --global user.name "Testing"
128
+ bundle exec bin/jailbreak
129
+ git commit -am "jailbreak"
124
130
  - run:
125
131
  name: Verify Rubocop Challenge
126
132
  command: |
data/.rubocop_todo.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2019-01-17 12:21:52 +0900 using RuboCop version 0.63.0.
3
+ # on 2019-02-21 12:01:12 +0900 using RuboCop version 0.65.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubocop_challenger (1.1.1)
4
+ rubocop_challenger (1.1.2)
5
5
  octokit
6
6
  rubocop
7
7
  rubocop-rspec
@@ -23,10 +23,11 @@ GEM
23
23
  multipart-post (2.0.0)
24
24
  octokit (4.13.0)
25
25
  sawyer (~> 0.8.0, >= 0.5.3)
26
- parallel (1.12.1)
26
+ parallel (1.13.0)
27
27
  parser (2.6.0.0)
28
28
  ast (~> 2.4.0)
29
29
  powerpack (0.1.2)
30
+ psych (3.1.0)
30
31
  public_suffix (3.0.3)
31
32
  rainbow (3.0.0)
32
33
  rake (10.5.0)
@@ -45,15 +46,16 @@ GEM
45
46
  rspec-support (3.8.0)
46
47
  rspec_junit_formatter (0.4.1)
47
48
  rspec-core (>= 2, < 4, != 2.12.0)
48
- rubocop (0.63.0)
49
+ rubocop (0.65.0)
49
50
  jaro_winkler (~> 1.5.1)
50
51
  parallel (~> 1.10)
51
52
  parser (>= 2.5, != 2.5.1.1)
52
53
  powerpack (~> 0.1)
54
+ psych (>= 3.1.0)
53
55
  rainbow (>= 2.2.2, < 4.0)
54
56
  ruby-progressbar (~> 1.7)
55
57
  unicode-display_width (~> 1.4.0)
56
- rubocop-rspec (1.31.0)
58
+ rubocop-rspec (1.32.0)
57
59
  rubocop (>= 0.60.0)
58
60
  ruby-progressbar (1.10.0)
59
61
  sawyer (0.8.1)
@@ -66,7 +68,7 @@ GEM
66
68
  simplecov-html (0.10.2)
67
69
  thor (0.20.3)
68
70
  unicode-display_width (1.4.1)
69
- yard (0.9.16)
71
+ yard (0.9.18)
70
72
 
71
73
  PLATFORMS
72
74
  ruby
data/bin/jailbreak CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
- # usage: bin/create_release_pr VERSION
4
+ # usage: bin/jailbreak
5
5
 
6
6
  require 'bundler/setup'
7
7
  require 'rubocop_challenger'
@@ -50,6 +50,7 @@ module RubocopChallenger
50
50
  default: false,
51
51
  desc: 'No commit after autocorrect'
52
52
  def go
53
+ regenerate_rubocop_todo
53
54
  target_rule = rubocop_challenge
54
55
  regenerate_rubocop_todo
55
56
  create_pull_request(target_rule)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubocopChallenger
4
- VERSION = '1.1.1'
4
+ VERSION = '1.1.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop_challenger
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ryosuke_sato
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-01-17 00:00:00.000000000 Z
11
+ date: 2019-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: octokit