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 +4 -4
- data/README.md +19 -0
- data/exe/create_itamae_ros_templates +7 -0
- data/itamae-plugin-recipe-ros.gemspec +2 -0
- data/lib/itamae/plugin/recipe/ros/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 591326e8faa20550d55cf43108adb7ff403871cd
|
|
4
|
+
data.tar.gz: 7799672c3d25d9c4a22e883e313391b920664e39
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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"
|
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.
|
|
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
|