itamae-plugin-recipe-ros 0.1.3 → 0.2.0

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: ebef3a12e47502802c43bbe4ed81117c2001679f
4
- data.tar.gz: 6687c5186f3c2b71cdadae7d90ee140bdd2b9cd1
3
+ metadata.gz: 591326e8faa20550d55cf43108adb7ff403871cd
4
+ data.tar.gz: 7799672c3d25d9c4a22e883e313391b920664e39
5
5
  SHA512:
6
- metadata.gz: 0aff2a79caba47cb46a5dfd1b534b0861d282756afe1ae2fef0278396aeaa54794497e9d0d31c79890910ed3631c44ad647479659a4b3edb989ea0cf4e31cca1
7
- data.tar.gz: 5f101019d657078d4786044d48f79c9d07b2deb364cc74466cbc00e0397b030e1b8a1efef087a6ed59a5ba0522dd14a74e78054e19491387b98202c84844a597
6
+ metadata.gz: 5a9c150d586a6062dc1f944133c72711ef58169b1bd9f8b62197811163cae3b38725b89e4090d79bed7ffa0c359faa6b23dd193406dbd01e22f22280f4c7913d
7
+ data.tar.gz: 884199f752bca91cd0954f9bbc8c8b6828940dfba6e63fcae5c72d043ac7415c233b102715dfffd4a0a664c135d3301a3c1f6285c8b70cb632d1c07efd26533d
data/README.md CHANGED
@@ -37,10 +37,29 @@ ros:
37
37
  install-target: desktop-full
38
38
  ```
39
39
 
40
+ ### Generate itamae template files
41
+
42
+ ```sh
43
+ $ mkdir itamae_ros && cd itamae_ros
44
+ $ create_itamae_ros_templates
45
+ $ bundle install
46
+ $ tree -L 1
47
+ .
48
+ ┣ Gemfile
49
+ ┣ Gemfile.lock
50
+ ┣ itamae_ros_node.yaml
51
+ ┗ itamae_ros_recipe.rb
52
+ ```
53
+
40
54
  ## Contributing
41
55
 
42
56
  Bug reports and pull requests are welcome on GitHub at https://github.com/DaikiMaekawa/itamae-plugin-recipe-ros. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
43
57
 
58
+ 1. Fork it ( https://github.com/DaikiMaekawa/itamae-plugin-recipe-ros/fork )
59
+ 2. Create your feature branch (git checkout -b my-new-feature)
60
+ 3. Commit your changes (git commit -am 'Add some feature')
61
+ 4. Push to the branch (git push origin my-new-feature)
62
+ 5. Create a new Pull Request
44
63
 
45
64
  ## License
46
65
 
@@ -9,3 +9,10 @@ end
9
9
  File.open("itamae_ros_recipe.rb", "w") do |file|
10
10
  file.puts("include_recipe \"ros::install\"")
11
11
  end
12
+
13
+ File.open("Gemfile", "w") do |file|
14
+ file.puts("source 'https://rubygems.org'")
15
+ file.puts("")
16
+ file.puts("gem 'itamae'")
17
+ file.puts("gem 'itamae-plugin-recipe-ros'")
18
+ end
@@ -18,6 +18,8 @@ Gem::Specification.new do |spec|
18
18
  spec.bindir = "exe"
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ["lib"]
21
+
22
+ spec.add_dependency "itamae", "~> 1.2"
21
23
 
22
24
  spec.add_development_dependency "bundler", "~> 1.10"
23
25
  spec.add_development_dependency "rake", "~> 10.0"
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module Ros
5
- VERSION = "0.1.3"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-plugin-recipe-ros
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daiki Maekawa
@@ -10,6 +10,20 @@ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2015-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: itamae
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.2'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: bundler
15
29
  requirement: !ruby/object:Gem::Requirement