robotkit 0.1.6 → 0.1.7

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
  SHA1:
3
- metadata.gz: 2733498569c9546eb2e9d024d340135791bab21e
4
- data.tar.gz: 0cba8c2fa3b8a4890631b72c4787eb157a4e6986
3
+ metadata.gz: d9a44f6d7a4f402b3100f6ccf436585a4dd25dd6
4
+ data.tar.gz: 9bc54a73273b111d19304364b30460fdd6683677
5
5
  SHA512:
6
- metadata.gz: 2aaa593af10b19a2c631871fe424cbae85468895f239db871d75e17662d3d0d2a66f49eebbd3bec83bf2306269ae8fdf389f8ec8ee2fa97031f2c1cceee7a97a
7
- data.tar.gz: 990fd64f60a99cefa1130c53adf12a63538dbbb235e182bf8013626594484ddcc023af733b5a18dfb5326d92b7606286ceb4fa67aec4f29956414c3b2d212f47
6
+ metadata.gz: 0e9ef53dbe9eb19f20f26381c4b899b56300b05fa78bad707e810684b3af39d20db1bfa7c2b718d2e497c96cdcca990452975d0885b9fa93296487788a99b143
7
+ data.tar.gz: b7f58f98cce9be9aed6b36c872f3af447121d60bd1a5b9e58cbc6908430a181f90d619159d6e27a2cbea57c034a283af6c75e08010b7420fcbe35990866e4e55
data/lib/robotkit/cli.rb CHANGED
@@ -39,7 +39,7 @@ module Robotkit
39
39
 
40
40
  # create lib package dir
41
41
  FileUtils.mkdir_p("#{output_dir}/#{library_module}/src/main/java/#{library_package_name.gsub('.','/')}")
42
- FileUtils.rm_rf("#{output_dir}/#{library_module}/{library_package}")
42
+ FileUtils.rm_rf("#{output_dir}/#{library_module}/{library_module}")
43
43
 
44
44
  # create sample package dir
45
45
  sample_package_src = "#{output_dir}/#{sample_module}/src/main/java/#{sample_package_name.gsub('.','/')}"
@@ -51,7 +51,7 @@ module Robotkit
51
51
  file.write(result)
52
52
  end
53
53
  end
54
- FileUtils.rm_rf("#{output_dir}/#{sample_module}/{sample_package}")
54
+ FileUtils.rm_rf("#{output_dir}/#{sample_module}/{sample_module}")
55
55
 
56
56
  #eval erb
57
57
  Dir.glob("#{output_dir}/**/*").select{|it| it.end_with?("erb")}.each do |path|
@@ -1,3 +1,3 @@
1
1
  module Robotkit
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: robotkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - kazuki-yoshida