robotkit 0.1.7 → 0.1.8

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: d9a44f6d7a4f402b3100f6ccf436585a4dd25dd6
4
- data.tar.gz: 9bc54a73273b111d19304364b30460fdd6683677
3
+ metadata.gz: 49c61cc37f6ac80d3d041b34cf3368c9db6aa0a2
4
+ data.tar.gz: dcfad47962cebab4c2ae515883d44821038d3cf6
5
5
  SHA512:
6
- metadata.gz: 0e9ef53dbe9eb19f20f26381c4b899b56300b05fa78bad707e810684b3af39d20db1bfa7c2b718d2e497c96cdcca990452975d0885b9fa93296487788a99b143
7
- data.tar.gz: b7f58f98cce9be9aed6b36c872f3af447121d60bd1a5b9e58cbc6908430a181f90d619159d6e27a2cbea57c034a283af6c75e08010b7420fcbe35990866e4e55
6
+ metadata.gz: 153f2ff59b9808844df268d009e6913a17fbc583ce08b7a30d8445f00dc306ea60344a4092e17e9559bed4507b079deb04979ba7610e91697105ce6592baa8f5
7
+ data.tar.gz: b22d15f51a284fee1a7d9ae2fb41e29c29369866c50a13d0135303cab3024697ce8c00a7129e1ea1c9518435868c8859e90a56f6aad99d7ababbb5a18e97fa66
data/lib/robotkit/cli.rb CHANGED
@@ -39,6 +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}/src/main/java/{library_package}")
42
43
  FileUtils.rm_rf("#{output_dir}/#{library_module}/{library_module}")
43
44
 
44
45
  # create sample package dir
@@ -51,6 +52,7 @@ module Robotkit
51
52
  file.write(result)
52
53
  end
53
54
  end
55
+ FileUtils.rm_rf("#{output_dir}/#{sample_module}/src/main/java/{sample_package}")
54
56
  FileUtils.rm_rf("#{output_dir}/#{sample_module}/{sample_module}")
55
57
 
56
58
  #eval erb
@@ -1,3 +1,3 @@
1
1
  module Robotkit
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.8"
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.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - kazuki-yoshida