changes_since 0.0.1
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.
- checksums.yaml +7 -0
- data/lib/changes_since.rb +17 -0
- metadata +46 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b39bc4c5dc04b94e8773d704713ab40d216100f9
|
4
|
+
data.tar.gz: bc2eebddd12321f76f7af0ef7d34e8f332939ab9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f890c5f385bceec241ed631a3d51e378f25d154514256294f1b3c04ff4baabd55f2c4c34e22c574a45a6a186384655a0ae7262978fb9b0362f99b44b1e5f0219
|
7
|
+
data.tar.gz: a716fc67cf602982f3942e5a880f2098129199818a264504ce7e355063ef02d2419ee8bb1d8dc875e88fffbb3aa453f76e20697eb81aebfb7dd132f44f1b6ad6
|
@@ -0,0 +1,17 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# Usage: To get all merged pull requests since v1.37.0
|
4
|
+
# script/changes_since v1.37.0
|
5
|
+
|
6
|
+
require 'git'
|
7
|
+
require 'optparse'
|
8
|
+
require 'set'
|
9
|
+
|
10
|
+
class ChangesSince
|
11
|
+
def self.fetch(tag, options, teams=nil)
|
12
|
+
parser = CommitParser.new(tag, options)
|
13
|
+
commits = parser.parse
|
14
|
+
printer = ChangelogPrinter.new(commits, teams, options)
|
15
|
+
printer.print!
|
16
|
+
end
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: changes_since
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ashwin Hegde
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-04-07 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Shows you all the merged pull requests since a certain git tag in a nice
|
14
|
+
format
|
15
|
+
email:
|
16
|
+
- ahegde@zendesk.com
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- lib/changes_since.rb
|
22
|
+
homepage: http://rubygems.org/gems/changes_since
|
23
|
+
licenses:
|
24
|
+
- MIT
|
25
|
+
metadata: {}
|
26
|
+
post_install_message:
|
27
|
+
rdoc_options: []
|
28
|
+
require_paths:
|
29
|
+
- lib
|
30
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - '>='
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '0'
|
35
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - '>='
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
requirements: []
|
41
|
+
rubyforge_project:
|
42
|
+
rubygems_version: 2.0.14
|
43
|
+
signing_key:
|
44
|
+
specification_version: 4
|
45
|
+
summary: Git Changes since a tag
|
46
|
+
test_files: []
|