capistrano-changelog 0.3.0
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/.gitignore +17 -0
- data/.rspec +4 -0
- data/Gemfile +12 -0
- data/LICENSE.txt +22 -0
- data/README.md +50 -0
- data/Rakefile +12 -0
- data/capistrano-changelog.gemspec +29 -0
- data/lib/capistrano-changelog.rb +37 -0
- data/lib/capistrano-changelog/capistrno.rb +15 -0
- data/lib/capistrano-changelog/change_log.rb +22 -0
- data/lib/capistrano-changelog/git/lib.rb +10 -0
- data/lib/capistrano-changelog/git/tags_list.rb +29 -0
- data/lib/capistrano-changelog/pivotal/api.rb +44 -0
- data/lib/capistrano-changelog/pivotal/story.rb +37 -0
- data/lib/capistrano-changelog/release.rb +13 -0
- data/lib/capistrano-changelog/version.rb +3 -0
- data/lib/capistrano-changelog/wrappers/changelog.rb +21 -0
- data/lib/capistrano-changelog/wrappers/release.rb +35 -0
- data/spec/lib/capistrano-changelog/wrappers/changelog_rspec.rb +16 -0
- data/spec/lib/capistrano-changelog/wrappers/release_spec.rb +29 -0
- data/spec/lib/capistrano_changelog_spec.rb +18 -0
- data/spec/spec_helper.rb +7 -0
- data/templates/changelog.erb +142 -0
- metadata +186 -0
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Dmitry Larkin
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
|
2
|
+
# capistrano-changelog
|
3
|
+
|
4
|
+
Uses git commits to recognize tracker stories and generates ChangeLog.
|
5
|
+
|
6
|
+
Integration with Capostrano.
|
7
|
+
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
gem 'capistrano-changelog', require: false
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install capistrano-changelog
|
22
|
+
|
23
|
+
|
24
|
+
## Usage
|
25
|
+
|
26
|
+
Capistrano tasks
|
27
|
+
|
28
|
+
set :changelog_tracker, :pivotal # ticket tracking service, default: pivotal
|
29
|
+
set :changelog_pivotal_token, 'xxxx'
|
30
|
+
set :changelog_output, File.join(release_path, 'public', 'changelog.html')
|
31
|
+
set :changelog_cache, '/tmp/pivotal' # does tickets caching if caching path specified, default: false
|
32
|
+
|
33
|
+
Hooks
|
34
|
+
|
35
|
+
# Generates ChangeLog file
|
36
|
+
#
|
37
|
+
after 'deploy:finished', 'deploy:changelog'
|
38
|
+
|
39
|
+
# Generates version.json with last commit hash
|
40
|
+
#
|
41
|
+
after 'deploy:update_code', 'deploy:version'
|
42
|
+
|
43
|
+
|
44
|
+
## Contributing
|
45
|
+
|
46
|
+
1. Fork it
|
47
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
48
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
49
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
50
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'capistrano-changelog/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "capistrano-changelog"
|
8
|
+
spec.version = CapistranoChangelog::VERSION
|
9
|
+
spec.authors = ["Dmitry Larkin"]
|
10
|
+
spec.email = ["dmitry.larkin@gmail.com"]
|
11
|
+
spec.description = %q{Uses git commits to recognize tracker stories and generates ChangeLog.}
|
12
|
+
spec.summary = %q{Uses git commits to recognize tracker stories and generates ChangeLog.}
|
13
|
+
spec.homepage = "https://github.com/dml/capistrano-changelog"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^spec/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
|
24
|
+
spec.add_runtime_dependency "git", "~> 1.2.6"
|
25
|
+
spec.add_runtime_dependency "capistrano", "~> 2.0"
|
26
|
+
spec.add_runtime_dependency "faraday", "~> 0.8"
|
27
|
+
spec.add_runtime_dependency "faraday_middleware", "~> 0.9"
|
28
|
+
spec.add_runtime_dependency "capistrano", "< 3.0"
|
29
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require "capistrano-changelog/version"
|
2
|
+
require "git"
|
3
|
+
|
4
|
+
|
5
|
+
module CapistranoChangelog
|
6
|
+
class GeneralError < StandardError; end
|
7
|
+
|
8
|
+
module Pivotal
|
9
|
+
class NetworkError < StandardError; end
|
10
|
+
|
11
|
+
autoload :Story, "capistrano-changelog/pivotal/story"
|
12
|
+
autoload :API, "capistrano-changelog/pivotal/api"
|
13
|
+
end
|
14
|
+
|
15
|
+
module Git
|
16
|
+
autoload :Lib, "capistrano-changelog/git/lib"
|
17
|
+
end
|
18
|
+
|
19
|
+
module Wrappers
|
20
|
+
autoload :ChangeLog, "capistrano-changelog/wrappers/changelog"
|
21
|
+
autoload :Release, "capistrano-changelog/wrappers/release"
|
22
|
+
end
|
23
|
+
|
24
|
+
autoload :Release, "capistrano-changelog/release"
|
25
|
+
autoload :ChangeLog, "capistrano-changelog/change_log"
|
26
|
+
autoload :TagList, "capistrano-changelog/git/tags_list"
|
27
|
+
|
28
|
+
def self.root
|
29
|
+
File.expand_path '../..', __FILE__
|
30
|
+
end
|
31
|
+
|
32
|
+
def self.templates
|
33
|
+
File.join root, 'templates'
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
Git::Lib.send :include, CapistranoChangelog::Git::Lib
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'capistrano-changelog'
|
2
|
+
|
3
|
+
Capistrano::Configuration.instance(:must_exist).load do
|
4
|
+
namespace :deploy do
|
5
|
+
desc "Generates changelog"
|
6
|
+
task :changelog do
|
7
|
+
put CapistranoChangelog::ChangeLog.generate, "#{current_path}/public/changelog.html"
|
8
|
+
end
|
9
|
+
|
10
|
+
desc "Generates version file. RESTART=(true|false) option could be specified (by default is true)"
|
11
|
+
task :version do
|
12
|
+
put CapistranoChangelog::Release.generate, "#{release_path}/version.json"
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'erb'
|
2
|
+
|
3
|
+
module CapistranoChangelog
|
4
|
+
class Controller
|
5
|
+
def initialize
|
6
|
+
@changelog = CapistranoChangelog::Wrappers::ChangeLog.new
|
7
|
+
end
|
8
|
+
def get_binding
|
9
|
+
binding
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
class ChangeLog
|
14
|
+
def self.generate
|
15
|
+
raise GeneralError, "You have to specify Pivotal token with export PIVOTAL_TOKEN=xyz" unless ENV.has_key?('PIVOTAL_TOKEN')
|
16
|
+
|
17
|
+
controller = CapistranoChangelog::Controller.new
|
18
|
+
template = ERB.new IO.read(File.join(CapistranoChangelog.templates, 'changelog.erb'))
|
19
|
+
template.result(controller.get_binding)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module CapistranoChangelog
|
2
|
+
class TagList
|
3
|
+
include Enumerable
|
4
|
+
|
5
|
+
def initialize(git, since)
|
6
|
+
@list = git.lib.ordered_tags + ['HEAD']
|
7
|
+
@since = since
|
8
|
+
@first_commit = git.lib.first_commit
|
9
|
+
end
|
10
|
+
|
11
|
+
def each(options = {})
|
12
|
+
list_after_item = @list[@list.index(@since), @list.size]
|
13
|
+
|
14
|
+
if block_given?
|
15
|
+
list_after_item.reverse.each { |e| yield(e) }
|
16
|
+
else
|
17
|
+
Enumerator.new(list_after_item.reverse, :each)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def next_to(name)
|
22
|
+
@list[@list.index(name) + 1] || 'HEAD'
|
23
|
+
end
|
24
|
+
|
25
|
+
def prev_to(name)
|
26
|
+
0 < @list.index(name) && @list[@list.index(name) - 1] or @first_commit
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
require 'faraday'
|
2
|
+
require 'faraday_middleware'
|
3
|
+
|
4
|
+
module CapistranoChangelog
|
5
|
+
module Pivotal
|
6
|
+
class API
|
7
|
+
class << self
|
8
|
+
def connection
|
9
|
+
@connection ||= Faraday.new 'https://www.pivotaltracker.com/services/v5' do |faraday|
|
10
|
+
faraday.request :json
|
11
|
+
faraday.response :json, :content_type => /\bjson$/
|
12
|
+
faraday.adapter Faraday.default_adapter
|
13
|
+
faraday.headers['X-TrackerToken'] = ENV['PIVOTAL_TOKEN']
|
14
|
+
faraday.options[:timeout] = 30
|
15
|
+
faraday.options[:open_timeout] = 30
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
def get(uri)
|
20
|
+
begin
|
21
|
+
response = connection.get(uri)
|
22
|
+
|
23
|
+
raise Pivotal::NetworkError unless response.status == 200
|
24
|
+
|
25
|
+
response.body
|
26
|
+
rescue Pivotal::NetworkError, Faraday::Error::TimeoutError => e
|
27
|
+
{
|
28
|
+
'kind' => 'error',
|
29
|
+
'error' => 'Unable to fetch data'
|
30
|
+
}
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def story(id)
|
35
|
+
get("stories/#{id}")
|
36
|
+
end
|
37
|
+
|
38
|
+
def epic(id)
|
39
|
+
get("epics/#{id}")
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'faraday'
|
2
|
+
|
3
|
+
module CapistranoChangelog
|
4
|
+
module Pivotal
|
5
|
+
class Story
|
6
|
+
attr_reader :num
|
7
|
+
|
8
|
+
def initialize(story_id)
|
9
|
+
@num = story_id
|
10
|
+
@story = Pivotal::API.story(story_id)
|
11
|
+
@labels = @story['labels'].map { |label| label['name'] } if @story['labels'].is_a?(Array)
|
12
|
+
end
|
13
|
+
|
14
|
+
def invalid?
|
15
|
+
@story['kind'] == 'error'
|
16
|
+
end
|
17
|
+
|
18
|
+
def valid?
|
19
|
+
!invalid?
|
20
|
+
end
|
21
|
+
|
22
|
+
def method_missing(meth)
|
23
|
+
if @story.has_key?(meth.to_s)
|
24
|
+
@story[meth.to_s]
|
25
|
+
else
|
26
|
+
super
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def self.get(id)
|
31
|
+
return @stories[id] if defined?(@stories) and @stories[id]
|
32
|
+
@stories ||= {}
|
33
|
+
@stories[id] = new(id)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module CapistranoChangelog::Wrappers
|
2
|
+
class ChangeLog
|
3
|
+
attr_reader :git, :tags
|
4
|
+
|
5
|
+
def initialize
|
6
|
+
@git ||= ::Git.open(Dir.getwd)
|
7
|
+
@start = ENV['PTLOG_SINCE'] || git.lib.ordered_tags.first
|
8
|
+
@tags = CapistranoChangelog::TagList.new(@git, @start)
|
9
|
+
end
|
10
|
+
|
11
|
+
def date
|
12
|
+
Time.new.utc.strftime('%I:%M%P %D UTC')
|
13
|
+
end
|
14
|
+
|
15
|
+
def releases
|
16
|
+
@tags.map do |tag|
|
17
|
+
CapistranoChangelog::Wrappers::Release.new(tag, self)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
module CapistranoChangelog::Wrappers
|
2
|
+
class Release
|
3
|
+
def initialize(tag, changelog)
|
4
|
+
@tag = tag
|
5
|
+
@initial_commit = changelog.tags.prev_to(tag)
|
6
|
+
@git = changelog.git
|
7
|
+
@commit = @git.gcommit(tag)
|
8
|
+
end
|
9
|
+
|
10
|
+
def title
|
11
|
+
@tag
|
12
|
+
end
|
13
|
+
|
14
|
+
def date
|
15
|
+
@commit.date.utc.strftime('%I:%M%P %D UTC')
|
16
|
+
end
|
17
|
+
|
18
|
+
def stories
|
19
|
+
ids = @git.log.between(@initial_commit, @tag).map do |commit|
|
20
|
+
commit.message.scan(/\#(\d+)/)
|
21
|
+
end
|
22
|
+
ids.flatten.uniq.map{ |num| CapistranoChangelog::Pivotal::Story.get(num) }
|
23
|
+
end
|
24
|
+
|
25
|
+
def commits(num)
|
26
|
+
@git.log.between(@initial_commit, @tag).select do |commit|
|
27
|
+
commit.message =~ (/\##{num}/)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def get_binding
|
32
|
+
binding
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe CapistranoChangelog::Wrappers::Release do
|
4
|
+
|
5
|
+
let(:tag) { mock(:tag) }
|
6
|
+
|
7
|
+
subject { }
|
8
|
+
|
9
|
+
describe '.title' do
|
10
|
+
|
11
|
+
end
|
12
|
+
|
13
|
+
describe '.date' do
|
14
|
+
|
15
|
+
end
|
16
|
+
|
17
|
+
describe '.stories' do
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
describe '.commits' do
|
22
|
+
|
23
|
+
end
|
24
|
+
|
25
|
+
describe '.get_binding' do
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe CapistranoChangelog do
|
4
|
+
|
5
|
+
describe ".root" do
|
6
|
+
subject { described_class.root }
|
7
|
+
|
8
|
+
it { should be_a String }
|
9
|
+
end
|
10
|
+
|
11
|
+
describe '.templates' do
|
12
|
+
subject { described_class.templates }
|
13
|
+
|
14
|
+
it { should be_a String }
|
15
|
+
it { should include described_class.root }
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,142 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>ChangeLog</title>
|
5
|
+
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
|
6
|
+
|
7
|
+
<style type="text/css">
|
8
|
+
|
9
|
+
@font-face {
|
10
|
+
font-family: sans-serif;
|
11
|
+
font-weight: normal;
|
12
|
+
font-style: normal;
|
13
|
+
}
|
14
|
+
|
15
|
+
@font-face {
|
16
|
+
font-family: sans-serif;
|
17
|
+
font-weight: normal;
|
18
|
+
font-style: normal;
|
19
|
+
}
|
20
|
+
|
21
|
+
body {
|
22
|
+
background-color: #f4f3f0;
|
23
|
+
min-width: 450px;
|
24
|
+
padding: 0;
|
25
|
+
margin: 0;
|
26
|
+
color: #292C2F;
|
27
|
+
font-family: DINPro-Regular, Arial;
|
28
|
+
font-size: 13px;
|
29
|
+
}
|
30
|
+
|
31
|
+
.content {
|
32
|
+
width: 800px;
|
33
|
+
margin: 22px auto;
|
34
|
+
}
|
35
|
+
|
36
|
+
.content-inner {
|
37
|
+
-webkit-border-radius: 5px;
|
38
|
+
-moz-border-radius: 5px;
|
39
|
+
border-radius: 5px;
|
40
|
+
background: white;
|
41
|
+
padding: 1px 30px;
|
42
|
+
-webkit-box-shadow: 0 3px 5px #d4d5d5;
|
43
|
+
-moz-box-shadow: 0 3px 5px #d4d5d5;
|
44
|
+
-o-box-shadow: 0 3px 5px #d4d5d5;
|
45
|
+
box-shadow: 0 3px 5px #d4d5d5;
|
46
|
+
}
|
47
|
+
|
48
|
+
h1, h2 , h3 {
|
49
|
+
font-family: sans-serif;
|
50
|
+
color: #000;
|
51
|
+
line-height: 1.321em;
|
52
|
+
font-weight: normal;
|
53
|
+
margin: 0;
|
54
|
+
}
|
55
|
+
|
56
|
+
h1 {
|
57
|
+
margin-bottom: 10px;
|
58
|
+
font-size: 30px;
|
59
|
+
}
|
60
|
+
|
61
|
+
h2 {
|
62
|
+
margin: 25px 0 10px;
|
63
|
+
font-size: 18px;
|
64
|
+
}
|
65
|
+
|
66
|
+
h3 {
|
67
|
+
font-size: 13px;
|
68
|
+
font-weight: bold;
|
69
|
+
margin-bottom: 5px;
|
70
|
+
padding-left: 15px;
|
71
|
+
}
|
72
|
+
|
73
|
+
a, a:visited, a:link, .num {
|
74
|
+
color: #4781c6;
|
75
|
+
text-decoration: none;
|
76
|
+
}
|
77
|
+
|
78
|
+
a:hover {
|
79
|
+
color: #f2b500;
|
80
|
+
text-decoration: none;
|
81
|
+
}
|
82
|
+
|
83
|
+
ul, li {
|
84
|
+
list-style: none;
|
85
|
+
}
|
86
|
+
|
87
|
+
ul {
|
88
|
+
margin: 0;
|
89
|
+
margin-bottom: 10px;
|
90
|
+
padding-left: 30px;
|
91
|
+
}
|
92
|
+
|
93
|
+
.date {
|
94
|
+
font-size: 13px;
|
95
|
+
font-style: italic;
|
96
|
+
}
|
97
|
+
|
98
|
+
.story {
|
99
|
+
margin-bottom: 25px;
|
100
|
+
}
|
101
|
+
|
102
|
+
</style>
|
103
|
+
|
104
|
+
<link rel="shortcut icon" href="assets/favicon.ico" />
|
105
|
+
</head>
|
106
|
+
|
107
|
+
<body>
|
108
|
+
<div class="content">
|
109
|
+
<h1>Change Log @ <%= @changelog.date %></h1>
|
110
|
+
<div class="content-inner">
|
111
|
+
|
112
|
+
<% for @release in @changelog.releases %>
|
113
|
+
<h2><%= @release.title %> <span class="date">(<%= @release.date %>)</span></h2>
|
114
|
+
|
115
|
+
<% for @story in @release.stories %>
|
116
|
+
<div class="story">
|
117
|
+
|
118
|
+
<% if @story.valid? %>
|
119
|
+
<h3>
|
120
|
+
<a href="<%= @story.url %>"><span class="num"><%= @story.num %></span></a>
|
121
|
+
<span class="name"><%= @story.name %></span>
|
122
|
+
</h3>
|
123
|
+
<% else %>
|
124
|
+
<h3>
|
125
|
+
<span class="num"><%= @story.num %></span>
|
126
|
+
<span class="name"><%= @story.error %></span>
|
127
|
+
</h3>
|
128
|
+
<% end %>
|
129
|
+
|
130
|
+
<ul class="commits">
|
131
|
+
<% for @commit in @release.commits(@story.num) %>
|
132
|
+
<li><%= @commit.message %></li>
|
133
|
+
<% end %>
|
134
|
+
</ul>
|
135
|
+
</div>
|
136
|
+
<% end %>
|
137
|
+
|
138
|
+
<% end %>
|
139
|
+
</div>
|
140
|
+
</div>
|
141
|
+
</body>
|
142
|
+
</html>
|
metadata
ADDED
@@ -0,0 +1,186 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: capistrano-changelog
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Dmitry Larkin
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-07-18 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.3'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.3'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: git
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 1.2.6
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.2.6
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: capistrano
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '2.0'
|
70
|
+
type: :runtime
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '2.0'
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: faraday
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ~>
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0.8'
|
86
|
+
type: :runtime
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ~>
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0.8'
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: faraday_middleware
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ~>
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0.9'
|
102
|
+
type: :runtime
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ~>
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0.9'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: capistrano
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - <
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '3.0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - <
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '3.0'
|
126
|
+
description: Uses git commits to recognize tracker stories and generates ChangeLog.
|
127
|
+
email:
|
128
|
+
- dmitry.larkin@gmail.com
|
129
|
+
executables: []
|
130
|
+
extensions: []
|
131
|
+
extra_rdoc_files: []
|
132
|
+
files:
|
133
|
+
- .gitignore
|
134
|
+
- .rspec
|
135
|
+
- Gemfile
|
136
|
+
- LICENSE.txt
|
137
|
+
- README.md
|
138
|
+
- Rakefile
|
139
|
+
- capistrano-changelog.gemspec
|
140
|
+
- lib/capistrano-changelog.rb
|
141
|
+
- lib/capistrano-changelog/capistrno.rb
|
142
|
+
- lib/capistrano-changelog/change_log.rb
|
143
|
+
- lib/capistrano-changelog/git/lib.rb
|
144
|
+
- lib/capistrano-changelog/git/tags_list.rb
|
145
|
+
- lib/capistrano-changelog/pivotal/api.rb
|
146
|
+
- lib/capistrano-changelog/pivotal/story.rb
|
147
|
+
- lib/capistrano-changelog/release.rb
|
148
|
+
- lib/capistrano-changelog/version.rb
|
149
|
+
- lib/capistrano-changelog/wrappers/changelog.rb
|
150
|
+
- lib/capistrano-changelog/wrappers/release.rb
|
151
|
+
- spec/lib/capistrano-changelog/wrappers/changelog_rspec.rb
|
152
|
+
- spec/lib/capistrano-changelog/wrappers/release_spec.rb
|
153
|
+
- spec/lib/capistrano_changelog_spec.rb
|
154
|
+
- spec/spec_helper.rb
|
155
|
+
- templates/changelog.erb
|
156
|
+
homepage: https://github.com/dml/capistrano-changelog
|
157
|
+
licenses:
|
158
|
+
- MIT
|
159
|
+
post_install_message:
|
160
|
+
rdoc_options: []
|
161
|
+
require_paths:
|
162
|
+
- lib
|
163
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
164
|
+
none: false
|
165
|
+
requirements:
|
166
|
+
- - ! '>='
|
167
|
+
- !ruby/object:Gem::Version
|
168
|
+
version: '0'
|
169
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
170
|
+
none: false
|
171
|
+
requirements:
|
172
|
+
- - ! '>='
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '0'
|
175
|
+
requirements: []
|
176
|
+
rubyforge_project:
|
177
|
+
rubygems_version: 1.8.25
|
178
|
+
signing_key:
|
179
|
+
specification_version: 3
|
180
|
+
summary: Uses git commits to recognize tracker stories and generates ChangeLog.
|
181
|
+
test_files:
|
182
|
+
- spec/lib/capistrano-changelog/wrappers/changelog_rspec.rb
|
183
|
+
- spec/lib/capistrano-changelog/wrappers/release_spec.rb
|
184
|
+
- spec/lib/capistrano_changelog_spec.rb
|
185
|
+
- spec/spec_helper.rb
|
186
|
+
has_rdoc:
|