git_tracker 1.6.2 → 1.6.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/CHANGELOG.md +5 -0
- data/Rakefile +2 -2
- data/lib/git_tracker/version.rb +1 -1
- metadata +2 -5
- data/bin/autospec +0 -16
- data/bin/rspec +0 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1443449475a79faeb57f1f16b07d5909e8838c59
|
4
|
+
data.tar.gz: 8cd2b66c6e3c6a9137367f6c07c684b9e80ea170
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 233f48c2479959c42b539558f1dac20fe2b45367a17778dc0ddf939759a8d9974f777b3e65fe750a92d4b706086ab8275f3a21f3f0ba13474218c6322435490d
|
7
|
+
data.tar.gz: 7b880cddf8afda550e86cd8458baedc9d8ce01bdcf1e2f45e227b9dd8701a92c4d13698b12ef4f63751537270e593a2e6009a3a6933b778f6fa95b0877bc81df
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
### dev
|
2
2
|
[full changelog](https://github.com/stevenharman/git_tracker/compare/v1.6.2...master)
|
3
3
|
|
4
|
+
### 1.6.3 / 2014-03-31
|
5
|
+
[full changelog](https://github.com/stevenharman/git_tracker/compare/v1.6.2...v1.6.3)
|
4
6
|
|
7
|
+
Bug Fixes
|
8
|
+
|
9
|
+
* Removew binstubs from packaged gem. Oops!
|
5
10
|
|
6
11
|
### 1.6.2 / 2014-03-26
|
7
12
|
[full changelog](https://github.com/stevenharman/git_tracker/compare/v1.6.1...v1.6.2)
|
data/Rakefile
CHANGED
@@ -54,9 +54,9 @@ namespace :standalone do
|
|
54
54
|
|
55
55
|
branch = "git_tracker-v#{GitTracker::VERSION}"
|
56
56
|
sh "git checkout -q -B #{branch}"
|
57
|
-
sh "git commit -m '
|
57
|
+
sh "git commit -m 'git-tracker #{GitTracker::VERSION}' -- #{formula_file}"
|
58
58
|
sh "git push -u stevenharman #{branch}"
|
59
|
-
sh "hub pull-request '
|
59
|
+
sh "hub pull-request -m 'git-tracker #{GitTracker::VERSION}'"
|
60
60
|
|
61
61
|
sh 'git checkout -q master'
|
62
62
|
end
|
data/lib/git_tracker/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git_tracker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Harman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -84,9 +84,7 @@ files:
|
|
84
84
|
- LICENSE
|
85
85
|
- README.md
|
86
86
|
- Rakefile
|
87
|
-
- bin/autospec
|
88
87
|
- bin/git-tracker
|
89
|
-
- bin/rspec
|
90
88
|
- git_tracker.gemspec
|
91
89
|
- lib/git_tracker.rb
|
92
90
|
- lib/git_tracker/branch.rb
|
@@ -146,4 +144,3 @@ test_files:
|
|
146
144
|
- spec/support/fake_file.rb
|
147
145
|
- spec/support/matchers/exit_code_matchers.rb
|
148
146
|
- spec/support/output_helper.rb
|
149
|
-
has_rdoc:
|
data/bin/autospec
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'autospec' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rspec-core', 'autospec')
|
data/bin/rspec
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'rspec' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rspec-core', 'rspec')
|