itamae-plugin-recipe-redmine 0.1.2 → 0.1.5

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: e5473aa29320c2aa7b1dfa1e23f46dfe3dbfc50e4a5cc34a570ab6c7b68a30e6
4
- data.tar.gz: 0ce61ab88948c33ac4865069f9be24635d964f5b0d052510504989361533a6e6
3
+ metadata.gz: ce4fb0af06796f3f5ec703a1a446450a8d7aba1ea26ba04177f86dbaad5d3572
4
+ data.tar.gz: c2c3fe8006cb4721ccb8dd6c2b08519e0ef26d0c7e3692cdfdc5175f249af640
5
5
  SHA512:
6
- metadata.gz: 9a5e5481c21cea04cf682da5e92b5fcc132ef96a4b2704b63333c348b110ca689cf1bbb278185ef1b71b151a52b09e718e1db842910f4033a3c41f482cee7d90
7
- data.tar.gz: 346f45469746d1ac57e9f077a30e6565ccc767e2ddebab19e985549d6a8e9d0fb1efd75f18d7ead6c869c903f227c01bbb199ae29fa3ca376fc09e356950a84e
6
+ metadata.gz: d75da1c84dd997e3d3ba1b77ff9240cc544e6353cdf52b140fc25835f4199872e7743004e25e80ed94922057462be28f77ff63855f9af276c6d100c73ba49ec1
7
+ data.tar.gz: c78f3aa34dcb2a7927f7839fcf9e6b0489b63c70b9f6d2ac4bcc419e6e6ad4f4a42554db5657848861c65a9e52741bf29080b0f312943906fec075ac2706345e
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).
@@ -23,8 +23,7 @@ Gem::Specification.new do |spec|
23
23
  spec.require_paths = ["lib"]
24
24
 
25
25
  spec.add_dependency 'itamae', '~> 1.10', '>= 1.10.2'
26
- spec.add_dependency 'itamae-plugin-recipe-postgresql', '~> 0', '>= 0.0.1'
27
26
 
28
- spec.add_development_dependency "bundler", "~> 1.17"
29
- 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"
30
29
  end
@@ -1,5 +1,6 @@
1
1
  require_relative 'version'
2
2
  version = ENV['REDMINE_VERSION'] || Itamae::Plugin::Recipe::Redmine::REDMINE_VERSION
3
+ insecure = ENV['INSECURE'] ? '--no-check-certificate' : ''
3
4
 
4
5
  %w{
5
6
  ImageMagick
@@ -35,7 +36,7 @@ end
35
36
  execute "download redmine-#{version}" do
36
37
  cwd '/opt/redmine/tmp'
37
38
  command <<-EOF
38
- wget http://www.redmine.org/releases/redmine-#{version}.tar.gz
39
+ wget #{insecure} https://www.redmine.org/releases/redmine-#{version}.tar.gz
39
40
  EOF
40
41
  not_if "test -e /opt/redmine/redmine-#{version}/INSTALLED || echo #{::File.read(::File.join(::File.dirname(__FILE__), "redmine-#{version}_sha256sum.txt")).strip} | sha256sum -c"
41
42
  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.2"
5
+ VERSION = "0.1.5"
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.2
4
+ version: 0.1.5
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-04-28 00:00:00.000000000 Z
11
+ date: 2022-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae
@@ -30,54 +30,34 @@ dependencies:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
32
  version: 1.10.2
33
- - !ruby/object:Gem::Dependency
34
- name: itamae-plugin-recipe-postgresql
35
- requirement: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - "~>"
38
- - !ruby/object:Gem::Version
39
- version: '0'
40
- - - ">="
41
- - !ruby/object:Gem::Version
42
- version: 0.0.1
43
- type: :runtime
44
- prerelease: false
45
- version_requirements: !ruby/object:Gem::Requirement
46
- requirements:
47
- - - "~>"
48
- - !ruby/object:Gem::Version
49
- version: '0'
50
- - - ">="
51
- - !ruby/object:Gem::Version
52
- version: 0.0.1
53
33
  - !ruby/object:Gem::Dependency
54
34
  name: bundler
55
35
  requirement: !ruby/object:Gem::Requirement
56
36
  requirements:
57
37
  - - "~>"
58
38
  - !ruby/object:Gem::Version
59
- version: '1.17'
39
+ version: 2.2.33
60
40
  type: :development
61
41
  prerelease: false
62
42
  version_requirements: !ruby/object:Gem::Requirement
63
43
  requirements:
64
44
  - - "~>"
65
45
  - !ruby/object:Gem::Version
66
- version: '1.17'
46
+ version: 2.2.33
67
47
  - !ruby/object:Gem::Dependency
68
48
  name: rake
69
49
  requirement: !ruby/object:Gem::Requirement
70
50
  requirements:
71
51
  - - "~>"
72
52
  - !ruby/object:Gem::Version
73
- version: '10.0'
53
+ version: 12.3.3
74
54
  type: :development
75
55
  prerelease: false
76
56
  version_requirements: !ruby/object:Gem::Requirement
77
57
  requirements:
78
58
  - - "~>"
79
59
  - !ruby/object:Gem::Version
80
- version: '10.0'
60
+ version: 12.3.3
81
61
  description: itamae recipe to ease redmine installation
82
62
  email:
83
63
  - matsuda@lab.acs-jp.com
@@ -99,6 +79,8 @@ files:
99
79
  - lib/itamae/plugin/recipe/redmine/redmine-3.4.10_sha256sum.txt
100
80
  - lib/itamae/plugin/recipe/redmine/redmine-4.0.3_sha256sum.txt
101
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
102
84
  - lib/itamae/plugin/recipe/redmine/templates/configuration.yml.erb
103
85
  - lib/itamae/plugin/recipe/redmine/version.rb
104
86
  homepage: https://github.com/maedadev/itamae-plugin-recipe-redmine
@@ -120,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
120
102
  - !ruby/object:Gem::Version
121
103
  version: '0'
122
104
  requirements: []
123
- rubygems_version: 3.1.2
105
+ rubygems_version: 3.2.29
124
106
  signing_key:
125
107
  specification_version: 4
126
108
  summary: itamae recipe to ease redmine installation