itamae-plugin-recipe-redmine 0.1.0 → 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: fc56912ec9745e26bbb45c1e9e4a895bb14687d288ed571a63ca46f7b3d65675
4
- data.tar.gz: 60b54680e54f0c30345129673334e50c790166c0a5607a61298d3d5aaadd8d5d
3
+ metadata.gz: 2c5cf1d8b8b7af0170790cf8de73ec94223ef06ab2da199a6b5f718e16481815
4
+ data.tar.gz: 5f333eeb03b2739f4bffc77f2ce6bb96888919525d9620184d66cf3248ce3c3b
5
5
  SHA512:
6
- metadata.gz: 9f61470d8536501b0fdd93319eb1a2e2ca5f37486504fd5ad35fbbce8d900f56b1bae7707d090ea8a725874d50ed21927dabae47d63ac5c67b2cd54e7f02f074
7
- data.tar.gz: 4632ce44948e107828835ae204ff889ea36c61b1a52abbb14ed8d0c09315089a7f30910df5abbe3aaa026e5a741751b198d6fd62da251f56faa4d89f1f5a407c
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).
@@ -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,9 +36,9 @@ 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
- not_if "echo #{::File.read(::File.join(::File.dirname(__FILE__), "redmine-#{version}_sha256sum.txt")).strip} | sha256sum -c"
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
42
43
 
43
44
  execute "build redmine-#{version}" do
@@ -1 +1 @@
1
- 30fb5b476ccf9ff3e3a1132b881a9a14e5b3f3c3c736aea4b29cdcc7cf739421 redmine-4.0.3.tar.gz
1
+ 4c215e5943ad1a31b96ed2e355472c787aba5c0bdb01060523361cac11a0cef3 redmine-4.0.3.tar.gz
@@ -0,0 +1 @@
1
+ 05faafe764330f2d77b0aacddf9d8ddce579c3d26bb8e03a7d6e7ff461f1cdda redmine-4.1.1.tar.gz
@@ -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.0"
5
+ VERSION = "0.1.4"
6
6
 
7
7
  REDMINE_VERSION = [
8
8
  REDMINE_VERSION_MAJOR = '4',
9
- REDMINE_VERSION_MINOR = '0',
10
- REDMINE_VERSION_PATCH = '3'
9
+ REDMINE_VERSION_MINOR = '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.0
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-04-07 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
@@ -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
@@ -98,6 +78,8 @@ files:
98
78
  - lib/itamae/plugin/recipe/redmine/redmine-3.2.5_sha256sum.txt
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
81
+ - lib/itamae/plugin/recipe/redmine/redmine-4.1.1_sha256sum.txt
82
+ - lib/itamae/plugin/recipe/redmine/redmine-4.1.5_sha256sum.txt
101
83
  - lib/itamae/plugin/recipe/redmine/templates/configuration.yml.erb
102
84
  - lib/itamae/plugin/recipe/redmine/version.rb
103
85
  homepage: https://github.com/maedadev/itamae-plugin-recipe-redmine
@@ -119,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
101
  - !ruby/object:Gem::Version
120
102
  version: '0'
121
103
  requirements: []
122
- rubygems_version: 3.0.6
104
+ rubygems_version: 3.2.16
123
105
  signing_key:
124
106
  specification_version: 4
125
107
  summary: itamae recipe to ease redmine installation