review-tools 0.1.7 → 0.1.10

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: 0ef29b2bf71bb42c05ebfc1a5d308f9c785cd86553e897ba5795fcd283a8f201
4
- data.tar.gz: c03df11e7be3514625ec25b372f32163019debcc39e8ea891b928dbbb695438d
3
+ metadata.gz: cb2e7f55f7479f43f5966e3bb0b84b90dde5b544b9bb6ff8ba39178868497c7b
4
+ data.tar.gz: c7ad87ca61660f90cf4b7a36340e54d83336bb320dd96c75b46d320fd34c6693
5
5
  SHA512:
6
- metadata.gz: c631eb498659cf9a07f29901fada1e65eb0212761f7896e75b275d3dd1ef311e8edeb35329adef6d0a37524c9cd50b06ed1423db0527326b1e6a34121196642f
7
- data.tar.gz: a3b286abe6ce46593fac0e8a734b418965f44771f7ccf8c3cf5fb47c5c6c1ab3c9a5a3d853126ee2c3cee4e2b6e3241d7958a380ce801c934990f0cbd065194a
6
+ metadata.gz: ac977a6b97179c806e90f54f9e4780d75c9f01cb0e42b51af56724d7565cf8d3bded95fa064e17e9327f021a7ef011d28330c36cbaa0bb7ffc282be89febd0ce
7
+ data.tar.gz: '08ea83135a122b1a76897542ff08551c7902c3f9521ac2938e70510ff1ba579a2c25a52fb8dce6ba2b2782482d723171957f3647152f5076405b159fc7504294'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- review-tools (0.1.7)
4
+ review-tools (0.1.10)
5
5
  nokogiri (~> 1.10.4)
6
6
 
7
7
  GEM
data/bin/run_review.sh CHANGED
@@ -36,7 +36,7 @@ logifle=~/tmp/run_review_`date +'%Y%m%d-%H%M%S'`.log
36
36
  show_notification "run_review.sh" "Failed: check_and_test.sh" $error_exit
37
37
 
38
38
  if [ -r 'coverage/index.html' ]; then
39
- "${script_dir}/analyze_coverage" into "$dst_branch" from "$src_branch"
39
+ analyze_coverage into "$dst_branch" from "$src_branch"
40
40
  fi
41
41
 
42
42
  ) 2>&1 | tee "$logifle"
data/exe/check_and_test CHANGED
@@ -3,4 +3,4 @@
3
3
  bin_dir = File.expand_path('../bin/', File.dirname(__FILE__))
4
4
  shell_script_path = File.join(bin_dir, 'check_and_test.sh')
5
5
 
6
- `#{shell_script_path}`
6
+ exec(shell_script_path)
@@ -3,4 +3,4 @@
3
3
  bin_dir = File.expand_path('../bin/', File.dirname(__FILE__))
4
4
  shell_script_path = File.join(bin_dir, 'git_checkout_target_branches.sh')
5
5
 
6
- `#{shell_script_path} #{ARGV.join(' ')}`
6
+ exec("#{shell_script_path} #{ARGV.join(' ')}")
@@ -3,4 +3,4 @@
3
3
  bin_dir = File.expand_path('../bin/', File.dirname(__FILE__))
4
4
  shell_script_path = File.join(bin_dir, 'prepare_rails_and_frontend.sh')
5
5
 
6
- `#{shell_script_path}`
6
+ exec(shell_script_path)
data/exe/run_review CHANGED
@@ -3,4 +3,4 @@
3
3
  bin_dir = File.expand_path('../bin/', File.dirname(__FILE__))
4
4
  shell_script_path = File.join(bin_dir, 'run_review.sh')
5
5
 
6
- `#{shell_script_path} #{ARGV.join(' ')}`
6
+ exec("#{shell_script_path} #{ARGV.join(' ')}")
@@ -1,5 +1,5 @@
1
1
  module Review
2
2
  module Tools
3
- VERSION = "0.1.7"
3
+ VERSION = "0.1.10"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: review-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shigeru Hagiwara