itamae-plugin-recipe-redmine 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b2412a52f3cfcd97426b72d94717629ffa994a36898d0328cc0c9667a800a29
4
- data.tar.gz: 7a456c36e4926087f6ed2fbfc91e0218af8f853fea4f98e95fbc8634552abae0
3
+ metadata.gz: 2c5cf1d8b8b7af0170790cf8de73ec94223ef06ab2da199a6b5f718e16481815
4
+ data.tar.gz: 5f333eeb03b2739f4bffc77f2ce6bb96888919525d9620184d66cf3248ce3c3b
5
5
  SHA512:
6
- metadata.gz: f7c7eaca7f6825b1de61f1f4ce64cf96594542c6a58017f73e396f88bb5a0d7ddbb350581cfe79bb36524fce7cf97071631326355558f2b85bfc58e1eacd461a
7
- data.tar.gz: a89046111fbe2f386a9c79630e3339b782fac115c3a572fea072e01076a4492f7edb5b002acd69b9849ae8fc6a001bd3cbd05e7904d22d5f256287442e5d053c
6
+ metadata.gz: a862b6a326df22f550b5b6cff7fbfda5ec2d365315bb8ea2940c707843f7c4454b02f0adab6d8a523bb9890cbf5f8315685b271a534ec8c0f2057299955fe25e
7
+ data.tar.gz: 8b9896c0522968ca8fc88811b8daa6fe5a2dbc0f886592770dc0cdfa49ffde88bf0a4954f5f3e5b1a7cc57d0fd5c1eb80716d5e1a7fe8f24a90019c7a97980b2
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # Itamae::Plugin::Recipe::Redmine
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/itamae/plugin/recipe/redmine`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ [Redmine](https://www.redmine.org/) installation recipe for [itamae](https://itamae.kitchen/).
6
4
 
7
5
  ## Installation
8
6
 
@@ -22,7 +20,12 @@ Or install it yourself as:
22
20
 
23
21
  ## Usage
24
22
 
25
- TODO: Write usage instructions here
23
+ from command line:
24
+ $ itamae local -n redmine::default # dry-run
25
+ $ itamae local redmine::default # real-run
26
+
27
+ from recipe:
28
+ include_recipe 'redmine'
26
29
 
27
30
  ## Development
28
31
 
@@ -31,8 +34,8 @@ After checking out the repo, run `bin/setup` to install dependencies. You can al
31
34
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
35
 
33
36
  ## Contributing
34
-
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/itamae-plugin-recipe-redmine. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
37
+ https://github.com/maedadev/itamae-plugin-recipe-redmine
38
+ Bug reports and pull requests are welcome on GitHub at https://github.com/maedadev/itamae-plugin-recipe-redmine. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
39
 
37
40
  ## License
38
41
 
@@ -40,4 +43,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
40
43
 
41
44
  ## Code of Conduct
42
45
 
43
- Everyone interacting in the Itamae::Plugin::Recipe::Redmine project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/itamae-plugin-recipe-redmine/blob/master/CODE_OF_CONDUCT.md).
46
+ Everyone interacting in the Itamae::Plugin::Recipe::Redmine project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/maedadev/itamae-plugin-recipe-redmine/CODE_OF_CONDUCT.md).
@@ -24,6 +24,6 @@ Gem::Specification.new do |spec|
24
24
 
25
25
  spec.add_dependency 'itamae', '~> 1.10', '>= 1.10.2'
26
26
 
27
- spec.add_development_dependency "bundler", "~> 2.0.2"
28
- spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "bundler", "~> 2.2.33"
28
+ spec.add_development_dependency "rake", "~> 12.3.3"
29
29
  end
@@ -0,0 +1 @@
1
+ 624dfeab7db5cda35a03d791b5fa83a836717ca280856c51cd089ed638f8678e redmine-4.1.5.tar.gz
@@ -2,12 +2,12 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module Redmine
5
- VERSION = "0.1.3"
5
+ VERSION = "0.1.4"
6
6
 
7
7
  REDMINE_VERSION = [
8
8
  REDMINE_VERSION_MAJOR = '4',
9
9
  REDMINE_VERSION_MINOR = '1',
10
- REDMINE_VERSION_PATCH = '1'
10
+ REDMINE_VERSION_PATCH = '5'
11
11
  ].join('.')
12
12
  end
13
13
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-plugin-recipe-redmine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - y-matsuda
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-06-01 00:00:00.000000000 Z
11
+ date: 2021-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae
@@ -36,28 +36,28 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: 2.0.2
39
+ version: 2.2.33
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: 2.0.2
46
+ version: 2.2.33
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: rake
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '10.0'
53
+ version: 12.3.3
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '10.0'
60
+ version: 12.3.3
61
61
  description: itamae recipe to ease redmine installation
62
62
  email:
63
63
  - matsuda@lab.acs-jp.com
@@ -79,6 +79,7 @@ files:
79
79
  - lib/itamae/plugin/recipe/redmine/redmine-3.4.10_sha256sum.txt
80
80
  - lib/itamae/plugin/recipe/redmine/redmine-4.0.3_sha256sum.txt
81
81
  - lib/itamae/plugin/recipe/redmine/redmine-4.1.1_sha256sum.txt
82
+ - lib/itamae/plugin/recipe/redmine/redmine-4.1.5_sha256sum.txt
82
83
  - lib/itamae/plugin/recipe/redmine/templates/configuration.yml.erb
83
84
  - lib/itamae/plugin/recipe/redmine/version.rb
84
85
  homepage: https://github.com/maedadev/itamae-plugin-recipe-redmine
@@ -100,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
100
101
  - !ruby/object:Gem::Version
101
102
  version: '0'
102
103
  requirements: []
103
- rubygems_version: 3.0.6
104
+ rubygems_version: 3.2.16
104
105
  signing_key:
105
106
  specification_version: 4
106
107
  summary: itamae recipe to ease redmine installation