capistrano-redmine 0.0.2 → 0.0.3
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.
- data/README.md +3 -3
- data/capistrano-redmine.gemspec +3 -1
- data/lib/capistrano-redmine/common.rb +2 -0
- data/lib/capistrano-redmine/version.rb +5 -0
- metadata +3 -2
data/README.md
CHANGED
@@ -8,11 +8,11 @@ status from "Waiting for deploy" to "Waiting for review."
|
|
8
8
|
|
9
9
|
Add this line to your application's Gemfile:
|
10
10
|
|
11
|
-
gem 'capistrano-redmine'
|
11
|
+
gem 'capistrano-redmine', :require => false
|
12
12
|
|
13
13
|
or
|
14
14
|
|
15
|
-
gem 'capistrano-redmine', :git => 'git://github.com/foxweb/capistrano-redmine.git'
|
15
|
+
gem 'capistrano-redmine', :git => 'git://github.com/foxweb/capistrano-redmine.git', :require => false
|
16
16
|
|
17
17
|
And then execute:
|
18
18
|
|
@@ -62,7 +62,7 @@ Or install it yourself as:
|
|
62
62
|
|
63
63
|
1. To enable the API-style authentication, you have to check Enable REST API in Administration → Settings → Authentication.
|
64
64
|
2. Create new user named like 'deploy' (or other) and login with this.
|
65
|
-
3. You can find your API key on your account page ( /my/account ) when logged in, on the right-hand pane of the default layout.
|
65
|
+
3. You can find your API key on your account page ( /my/account ) when logged in, on the right-hand pane of the default layout.
|
66
66
|
4. Copy and paste API key to the `config/deploy.rb` on `set :redmine_token`.
|
67
67
|
|
68
68
|
## Documentation
|
data/capistrano-redmine.gemspec
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/capistrano-redmine/version', __FILE__)
|
3
|
+
|
2
4
|
Gem::Specification.new do |gem|
|
3
5
|
gem.authors = ["Aleksey Kurepin"]
|
4
6
|
gem.email = ["lesha@kurepin.com"]
|
@@ -12,5 +14,5 @@ Gem::Specification.new do |gem|
|
|
12
14
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
13
15
|
gem.name = "capistrano-redmine"
|
14
16
|
gem.require_paths = ["lib"]
|
15
|
-
gem.version =
|
17
|
+
gem.version = Capistrano::Redmine::VERSION
|
16
18
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-redmine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-07-
|
12
|
+
date: 2012-07-17 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: ! "This gem contains a Capistrano :task, which allows to\n update
|
15
15
|
the Redmine issues statuses when you do deploy with Capistrano."
|
@@ -28,6 +28,7 @@ files:
|
|
28
28
|
- lib/capistrano-redmine.rb
|
29
29
|
- lib/capistrano-redmine/common.rb
|
30
30
|
- lib/capistrano-redmine/redmine_client.rb
|
31
|
+
- lib/capistrano-redmine/version.rb
|
31
32
|
homepage: http://github.com/foxweb/capistrano-redmine
|
32
33
|
licenses: []
|
33
34
|
post_install_message:
|