itamae-plugin-recipe-redmine 0.1.3 → 0.1.6

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: 426f8d0c0026e49001c0ae65888e2f3936237b720cf5e3117cadab77a65b96c0
4
+ data.tar.gz: 1c28a84124086c169b8fafda014198a1a103d482c0490586782cc557b58f56dc
5
5
  SHA512:
6
- metadata.gz: f7c7eaca7f6825b1de61f1f4ce64cf96594542c6a58017f73e396f88bb5a0d7ddbb350581cfe79bb36524fce7cf97071631326355558f2b85bfc58e1eacd461a
7
- data.tar.gz: a89046111fbe2f386a9c79630e3339b782fac115c3a572fea072e01076a4492f7edb5b002acd69b9849ae8fc6a001bd3cbd05e7904d22d5f256287442e5d053c
6
+ metadata.gz: 84c457dc7c38330ebdaa3c5e96e84088a93d4c3cbd1efbf0ff47227b598be7127f1248c0f84fc0976c6c05ee06ca507d3745bceef5efc6b694113072affcc881
7
+ data.tar.gz: 73fbcee351a63efcb6a37a354b26fc305e71d30f56c3534b36509e6a74037cdacf6ebe235098eab238a7b9529cef15bb047b8ee64d214eb87ce491f6d40b9b80
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
@@ -77,3 +77,10 @@ link 'current' do
77
77
  to "redmine-#{version}"
78
78
  force true
79
79
  end
80
+
81
+ patch_file = "#{File.dirname(__FILE__)}/files/application.rb.diff"
82
+ execute 'apply patch to config.session_store :cookie_store ... secure:true' do
83
+ command "patch -p1 <#{patch_file}"
84
+ not_if "patch -p1 -Rsf --dry-run <#{patch_file}"
85
+ cwd '/opt/redmine/current'
86
+ end
@@ -0,0 +1 @@
1
+ 624dfeab7db5cda35a03d791b5fa83a836717ca280856c51cd089ed638f8678e redmine-4.1.5.tar.gz
@@ -0,0 +1 @@
1
+ bf56cade5d0a6623af590652bffe2865208f399fe77746d4e1bbd9d1a995a38a redmine-4.1.7.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.6"
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 = '7'
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.6
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: 2022-07-12 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,8 @@ 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
83
+ - lib/itamae/plugin/recipe/redmine/redmine-4.1.7_sha256sum.txt
82
84
  - lib/itamae/plugin/recipe/redmine/templates/configuration.yml.erb
83
85
  - lib/itamae/plugin/recipe/redmine/version.rb
84
86
  homepage: https://github.com/maedadev/itamae-plugin-recipe-redmine
@@ -100,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
100
102
  - !ruby/object:Gem::Version
101
103
  version: '0'
102
104
  requirements: []
103
- rubygems_version: 3.0.6
105
+ rubygems_version: 3.2.29
104
106
  signing_key:
105
107
  specification_version: 4
106
108
  summary: itamae recipe to ease redmine installation