git_reflow 0.3.1 → 0.3.2

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c3ed99e025542264cc8078d207d8d15fc58d0463
4
+ data.tar.gz: 4fbcf83566de80f9dfc57b599082ea342f9deb38
5
+ SHA512:
6
+ metadata.gz: f22d231cadc58f7c2e4fb29bf54a6a4e80fd8e3198ba446f076cecabbd8dee652a326622e2646f9102d45702268348fe4657444bdce45cf58929c553905446b6
7
+ data.tar.gz: c21635b405f54e938768cb754af59d7921b1440e0cc4ac9391ead3cfeaaa17b61097709cfab8555a40f3e504db01f9419622bf9bbd23570723e47f504de5a5b6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git_reflow (0.3.1)
4
+ git_reflow (0.3.2)
5
5
  colorize (= 0.5.8)
6
6
  github_api (= 0.7.0)
7
7
  gli (= 2.1.0)
@@ -12,7 +12,7 @@ GEM
12
12
  remote: http://rubygems.org/
13
13
  specs:
14
14
  colorize (0.5.8)
15
- faraday (0.8.6)
15
+ faraday (0.8.4)
16
16
  multipart-post (~> 1.1)
17
17
  git (1.2.5)
18
18
  github_api (0.7.0)
@@ -23,9 +23,9 @@ GEM
23
23
  oauth2
24
24
  gli (2.1.0)
25
25
  hashie (1.2.0)
26
- highline (1.6.16)
26
+ highline (1.6.18)
27
27
  httpauth (0.2.0)
28
- httpclient (2.3.3)
28
+ httpclient (2.2.7)
29
29
  jeweler (1.8.4)
30
30
  bundler (~> 1.0)
31
31
  git (>= 1.2.5)
@@ -35,17 +35,15 @@ GEM
35
35
  jwt (0.1.5)
36
36
  multi_json (>= 1.0)
37
37
  multi_json (1.7.2)
38
- multi_xml (0.5.3)
39
- multipart-post (1.2.0)
40
- nokogiri (1.5.9)
41
- oauth2 (0.9.1)
38
+ multipart-post (1.1.5)
39
+ nokogiri (1.5.6)
40
+ oauth2 (0.8.0)
42
41
  faraday (~> 0.8)
43
42
  httpauth (~> 0.1)
44
43
  jwt (~> 0.1.4)
45
44
  multi_json (~> 1.0)
46
- multi_xml (~> 0.5)
47
45
  rack (~> 1.2)
48
- rack (1.5.2)
46
+ rack (1.4.1)
49
47
  rake (0.9.2.2)
50
48
  rdoc (3.12)
51
49
  json (~> 1.4)
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) {{year}} {{fullname}}
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc CHANGED
@@ -1,18 +1,35 @@
1
1
  = git-reflow
2
2
 
3
- http://www.reenhanced.com/images/reflow.jpg
3
+ http://www.reenhanced.com/images/reflow.png
4
4
 
5
- Reflow is a no bullshit git workflow designed to help you maintain quality and get things done.
5
+ If your workflow looks like this:
6
+ 1. Create a feature branch
7
+ 2. Write great code
8
+ 3. Create a pull request against master
9
+ 4. Get 'lgtm' through a code review
10
+ 5. Squash merge to master
11
+ 6. Delete the feature branch
12
+
13
+ Reflow will make your life easier.
14
+
15
+ == Quickstart
16
+ Create and switch to new branch +nh-branchy-branch+:
17
+ $ git reflow start nh-branchy-branch
18
+
19
+ Create a pull request for your branch against +master+:
20
+ $ git reflow review
21
+
22
+ If your code is 'LGTM'd, squash merge to +master+ and delete the feature branch:
23
+ $ git reflow deliver
24
+
25
+ ----
6
26
 
7
27
  == Benefits:
8
- * Save minutes every day that add up to hours of more productive time.
9
28
  * Enforce code reviews across your team.
10
- * Stop worrying about how to deliver your code and just get work done.
11
29
  * Know that your entire team delivers code the same way.
12
30
  * Reduce the knowledge needed to deliver great code.
13
31
  * Have a commit history that's clean and actually usable.
14
32
  * Revert features with ease (if needed).
15
- * Work with diverse teams with less worry about the code delivery process.
16
33
  * Work with diverse teams with less worry about different processes.
17
34
  * Stop searching for other git workflows.
18
35
  Reflow covers 90% of your needs without junk you'll never use.
@@ -24,15 +41,7 @@ Reflow is a no bullshit git workflow designed to help you maintain quality and g
24
41
  * Squash merge feature branches because results are more important than details
25
42
  * Automatically clean up obsolete feature branches after a successful merge
26
43
 
27
- == Quickstart
28
- Create and switch to new branch +nh-branchy-branch+:
29
- $ git reflow start nh-branchy-branch
30
-
31
- Create a pull request for your branch against +master+:
32
- $ git reflow review
33
-
34
- If your code is 'LGTM'd, squash merge to +master+ and delete the feature branch:
35
- $ git reflow deliver
44
+ ----
36
45
 
37
46
  == How to use
38
47
 
data/git_reflow.gemspec CHANGED
@@ -3,6 +3,7 @@ require File.join([File.dirname(__FILE__),'lib','git_reflow/version.rb'])
3
3
  spec = Gem::Specification.new do |s|
4
4
  s.name = 'git_reflow'
5
5
  s.version = GitReflow::VERSION
6
+ s.license = 'MIT'
6
7
  s.authors = ["Valentino Stoll", "Robert Stern", "Nicholas Hance"]
7
8
  s.email = ["dev@reenhanced.com"]
8
9
  s.homepage = "http://github.com/reenhanced/gitreflow"
@@ -1,3 +1,3 @@
1
1
  module GitReflow
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
metadata CHANGED
@@ -1,156 +1,143 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: git_reflow
3
- version: !ruby/object:Gem::Version
4
- hash: 17
5
- prerelease:
6
- segments:
7
- - 0
8
- - 3
9
- - 1
10
- version: 0.3.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.2
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - Valentino Stoll
14
8
  - Robert Stern
15
9
  - Nicholas Hance
16
10
  autorequire:
17
11
  bindir: bin
18
12
  cert_chain: []
19
-
20
- date: 2013-07-12 00:00:00 Z
21
- dependencies:
22
- - !ruby/object:Gem::Dependency
23
- version_requirements: &id001 !ruby/object:Gem::Requirement
24
- none: false
25
- requirements:
26
- - - ">="
27
- - !ruby/object:Gem::Version
28
- hash: 3
29
- segments:
30
- - 0
31
- version: "0"
32
- prerelease: false
33
- type: :development
13
+ date: 2013-07-25 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
34
16
  name: rake
35
- requirement: *id001
36
- - !ruby/object:Gem::Dependency
37
- version_requirements: &id002 !ruby/object:Gem::Requirement
38
- none: false
39
- requirements:
40
- - - ">="
41
- - !ruby/object:Gem::Version
42
- hash: 3
43
- segments:
44
- - 0
45
- version: "0"
46
- prerelease: false
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
47
22
  type: :development
48
- name: rdoc
49
- requirement: *id002
50
- - !ruby/object:Gem::Dependency
51
- version_requirements: &id003 !ruby/object:Gem::Requirement
52
- none: false
53
- requirements:
54
- - - ">="
55
- - !ruby/object:Gem::Version
56
- hash: 3
57
- segments:
58
- - 0
59
- version: "0"
60
23
  prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ! '>='
27
+ - !ruby/object:Gem::Version
28
+ version: '0'
29
+ - !ruby/object:Gem::Dependency
30
+ name: rdoc
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ! '>='
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
61
36
  type: :development
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ! '>='
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ - !ruby/object:Gem::Dependency
62
44
  name: jeweler
63
- requirement: *id003
64
- - !ruby/object:Gem::Dependency
65
- version_requirements: &id004 !ruby/object:Gem::Requirement
66
- none: false
67
- requirements:
68
- - - "="
69
- - !ruby/object:Gem::Version
70
- hash: 27
71
- segments:
72
- - 0
73
- - 5
74
- - 8
75
- version: 0.5.8
45
+ requirement: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ! '>='
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ type: :development
76
51
  prerelease: false
77
- type: :runtime
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ! '>='
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ - !ruby/object:Gem::Dependency
78
58
  name: colorize
79
- requirement: *id004
80
- - !ruby/object:Gem::Dependency
81
- version_requirements: &id005 !ruby/object:Gem::Requirement
82
- none: false
83
- requirements:
84
- - - "="
85
- - !ruby/object:Gem::Version
86
- hash: 11
87
- segments:
88
- - 2
89
- - 1
90
- - 0
91
- version: 2.1.0
92
- prerelease: false
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - '='
62
+ - !ruby/object:Gem::Version
63
+ version: 0.5.8
93
64
  type: :runtime
94
- name: gli
95
- requirement: *id005
96
- - !ruby/object:Gem::Dependency
97
- version_requirements: &id006 !ruby/object:Gem::Requirement
98
- none: false
99
- requirements:
100
- - - ">="
101
- - !ruby/object:Gem::Version
102
- hash: 3
103
- segments:
104
- - 0
105
- version: "0"
106
65
  prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - '='
69
+ - !ruby/object:Gem::Version
70
+ version: 0.5.8
71
+ - !ruby/object:Gem::Dependency
72
+ name: gli
73
+ requirement: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - '='
76
+ - !ruby/object:Gem::Version
77
+ version: 2.1.0
107
78
  type: :runtime
108
- name: highline
109
- requirement: *id006
110
- - !ruby/object:Gem::Dependency
111
- version_requirements: &id007 !ruby/object:Gem::Requirement
112
- none: false
113
- requirements:
114
- - - ">="
115
- - !ruby/object:Gem::Version
116
- hash: 3
117
- segments:
118
- - 0
119
- version: "0"
120
79
  prerelease: false
80
+ version_requirements: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - '='
83
+ - !ruby/object:Gem::Version
84
+ version: 2.1.0
85
+ - !ruby/object:Gem::Dependency
86
+ name: highline
87
+ requirement: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ! '>='
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
121
92
  type: :runtime
122
- name: httpclient
123
- requirement: *id007
124
- - !ruby/object:Gem::Dependency
125
- version_requirements: &id008 !ruby/object:Gem::Requirement
126
- none: false
127
- requirements:
128
- - - "="
129
- - !ruby/object:Gem::Version
130
- hash: 3
131
- segments:
132
- - 0
133
- - 7
134
- - 0
135
- version: 0.7.0
136
93
  prerelease: false
94
+ version_requirements: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ! '>='
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ - !ruby/object:Gem::Dependency
100
+ name: httpclient
101
+ requirement: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ! '>='
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
137
106
  type: :runtime
107
+ prerelease: false
108
+ version_requirements: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ! '>='
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ - !ruby/object:Gem::Dependency
138
114
  name: github_api
139
- requirement: *id008
115
+ requirement: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - '='
118
+ - !ruby/object:Gem::Version
119
+ version: 0.7.0
120
+ type: :runtime
121
+ prerelease: false
122
+ version_requirements: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - '='
125
+ - !ruby/object:Gem::Version
126
+ version: 0.7.0
140
127
  description: Git Reflow manages your git workflow.
141
- email:
128
+ email:
142
129
  - dev@reenhanced.com
143
- executables:
130
+ executables:
144
131
  - git-reflow
145
132
  - gitreflow-common
146
133
  extensions: []
147
-
148
- extra_rdoc_files:
134
+ extra_rdoc_files:
149
135
  - README.rdoc
150
- files:
136
+ files:
151
137
  - .gitignore
152
138
  - Gemfile
153
139
  - Gemfile.lock
140
+ - LICENSE
154
141
  - README.rdoc
155
142
  - Rakefile
156
143
  - bin/git-reflow
@@ -165,44 +152,35 @@ files:
165
152
  - lib/git_reflow/commands/status.rb
166
153
  - lib/git_reflow/version.rb
167
154
  homepage: http://github.com/reenhanced/gitreflow
168
- licenses: []
155
+ licenses:
156
+ - MIT
157
+ metadata: {}
158
+ post_install_message: ! 'You need to setup your GitHub OAuth token
169
159
 
170
- post_install_message: |-
171
- You need to setup your GitHub OAuth token
172
- Please run 'git-reflow setup'
173
- rdoc_options:
160
+ Please run ''git-reflow setup'''
161
+ rdoc_options:
174
162
  - --title
175
163
  - git_reflow
176
164
  - --main
177
165
  - README.rdoc
178
166
  - -ri
179
- require_paths:
167
+ require_paths:
180
168
  - lib
181
169
  - lib
182
- required_ruby_version: !ruby/object:Gem::Requirement
183
- none: false
184
- requirements:
185
- - - ">="
186
- - !ruby/object:Gem::Version
187
- hash: 3
188
- segments:
189
- - 0
190
- version: "0"
191
- required_rubygems_version: !ruby/object:Gem::Requirement
192
- none: false
193
- requirements:
194
- - - ">="
195
- - !ruby/object:Gem::Version
196
- hash: 3
197
- segments:
198
- - 0
199
- version: "0"
170
+ required_ruby_version: !ruby/object:Gem::Requirement
171
+ requirements:
172
+ - - ! '>='
173
+ - !ruby/object:Gem::Version
174
+ version: '0'
175
+ required_rubygems_version: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ! '>='
178
+ - !ruby/object:Gem::Version
179
+ version: '0'
200
180
  requirements: []
201
-
202
181
  rubyforge_project:
203
- rubygems_version: 1.8.24
182
+ rubygems_version: 2.0.3
204
183
  signing_key:
205
- specification_version: 3
184
+ specification_version: 4
206
185
  summary: A better git process
207
186
  test_files: []
208
-