pivotal-github 1.0.3 → 1.0.4
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 +4 -4
- data/.gitignore +2 -0
- data/Gemfile +5 -1
- data/README.md +1 -1
- data/lib/pivotal-github/version.rb +1 -1
- data/pivotal-github.gemspec +1 -0
- metadata +3 -3
- data/.api_token +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc28df95e124f0bba9b9e091123eb9ac37595251
|
|
4
|
+
data.tar.gz: 31f81ab196786fb8c7458368acccfea617012074
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1081e21e8ec8600b30911afe84784d98a55165466f1ebd7e1290b541ddc20cc0925f05e3a03b58941ccf9691caca17a9f715b957e43908a9dd58db984f6d6f04
|
|
7
|
+
data.tar.gz: a40e5cb4d1c3ebc0d16bfac343c2188a53e53732a9d7cb0adf145db4f3e143eaff0665e183ff3d9fc06aa0364f5afcef7dc302fd03e19ceefa5514430d6d6de2
|
data/.gitignore
CHANGED
data/Gemfile
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
source 'https://rubygems.org'
|
|
2
2
|
ruby '2.0.0'
|
|
3
3
|
|
|
4
|
-
gem '
|
|
4
|
+
gem 'git-utils'
|
|
5
5
|
gem 'httparty', '~> 0.10.0'
|
|
6
6
|
gem 'git'
|
|
7
7
|
gem 'nokogiri'
|
|
8
8
|
|
|
9
|
+
group :test do
|
|
10
|
+
gem 'rspec', '~> 2.13.0'
|
|
11
|
+
end
|
|
12
|
+
|
|
9
13
|
# Specify your gem's dependencies in pivotal-github.gemspec
|
|
10
14
|
gemspec
|
data/README.md
CHANGED
|
@@ -8,7 +8,7 @@ You can install the `pivotal-github` gem directly as follows:
|
|
|
8
8
|
|
|
9
9
|
$ gem install pivotal-github
|
|
10
10
|
|
|
11
|
-
The full workflow described herein requires some of the Git utilities from [git-utils](https://github.com/mhartl/git-utils),
|
|
11
|
+
The full workflow described herein requires some of the Git utilities from [git-utils](https://github.com/mhartl/git-utils), which is included as a gem dependency.
|
|
12
12
|
|
|
13
13
|
## Usage
|
|
14
14
|
|
data/pivotal-github.gemspec
CHANGED
|
@@ -11,6 +11,7 @@ Gem::Specification.new do |gem|
|
|
|
11
11
|
gem.description = %q{Add commands for Pivotal Tracker-GitHub integration}
|
|
12
12
|
gem.summary = %q{See the README for full documentation}
|
|
13
13
|
gem.homepage = "https://github.com/mhartl/pivotal-github"
|
|
14
|
+
gem.license = "MIT"
|
|
14
15
|
|
|
15
16
|
gem.files = `git ls-files`.split($/)
|
|
16
17
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pivotal-github
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Hartl
|
|
@@ -22,7 +22,6 @@ executables:
|
|
|
22
22
|
extensions: []
|
|
23
23
|
extra_rdoc_files: []
|
|
24
24
|
files:
|
|
25
|
-
- .api_token
|
|
26
25
|
- .gitignore
|
|
27
26
|
- .project_id
|
|
28
27
|
- .rspec
|
|
@@ -57,7 +56,8 @@ files:
|
|
|
57
56
|
- spec/options/options_spec.rb
|
|
58
57
|
- spec/spec_helper.rb
|
|
59
58
|
homepage: https://github.com/mhartl/pivotal-github
|
|
60
|
-
licenses:
|
|
59
|
+
licenses:
|
|
60
|
+
- MIT
|
|
61
61
|
metadata: {}
|
|
62
62
|
post_install_message:
|
|
63
63
|
rdoc_options: []
|
data/.api_token
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
faed06d1e5f6dfd030e451c34b24ab68
|