give 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +4 -0
- data/LICENSE.txt +21 -17
- data/README.md +11 -7
- data/VERSION +1 -1
- data/give.gemspec +3 -2
- data/lib/give.rb +1 -1
- metadata +147 -95
data/.travis.yml
ADDED
data/LICENSE.txt
CHANGED
@@ -1,20 +1,24 @@
|
|
1
|
-
Copyright (c)
|
1
|
+
Copyright (c) 2012, Tom Clements
|
2
|
+
All rights reserved.
|
2
3
|
|
3
|
-
|
4
|
-
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
9
|
-
the following conditions:
|
4
|
+
Redistribution and use in source and binary forms, with or without
|
5
|
+
modification, are permitted provided that the following conditions are met:
|
10
6
|
|
11
|
-
|
12
|
-
|
7
|
+
Redistributions of source code must retain the above copyright notice, this
|
8
|
+
list of conditions and the following disclaimer.
|
9
|
+
|
10
|
+
Redistributions in binary form must reproduce the above copyright notice, this
|
11
|
+
list of conditions and the following disclaimer in the documentation and/or
|
12
|
+
other materials provided with the distribution.
|
13
|
+
|
14
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
15
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
16
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
17
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
18
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
19
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
20
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
21
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
22
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
23
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
13
24
|
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
## give
|
2
2
|
--------------
|
3
|
-
|
3
|
+
give makes contributing to open source projects on Github just a little easier, by wrapping some simple commands around a common workflow.
|
4
4
|
|
5
5
|
### Installation
|
6
6
|
|
@@ -30,16 +30,20 @@ When the work is complete, push up the branch and send a pull request with `give
|
|
30
30
|
|
31
31
|
You will be prompted to enter a title and body for the pull request.
|
32
32
|
|
33
|
+
### Roadmap
|
34
|
+
Any help with the following would be appreciated, but I'd also love to hear
|
35
|
+
any ideas about improving this project.
|
36
|
+
|
37
|
+
* Windows support
|
38
|
+
* Twitter integration
|
39
|
+
* Remove dependency on Octokit
|
33
40
|
|
34
41
|
### Contributing to give
|
35
42
|
-----------------------------------
|
36
43
|
|
37
|
-
*
|
38
|
-
|
39
|
-
*
|
40
|
-
* Start a feature/bugfix branch
|
41
|
-
* Commit and push until you are happy with your contribution
|
42
|
-
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
44
|
+
* Try using give as outlined above, this will help to identify possible
|
45
|
+
workflow improvements
|
46
|
+
* Be sure to run the tests, and test against 1.8 and 1.9
|
43
47
|
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
44
48
|
|
45
49
|
#### Copyright
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/give.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "give"
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["seenmyfate"]
|
12
|
-
s.date = "2011-12-
|
12
|
+
s.date = "2011-12-31"
|
13
13
|
s.description = "The aim of Give is to make contributing to open source projects on Github just that bit easier, by wrapping some simple commands around a common workflow."
|
14
14
|
s.email = "seenmyfate@gmail.com"
|
15
15
|
s.executables = ["give"]
|
@@ -21,6 +21,7 @@ Gem::Specification.new do |s|
|
|
21
21
|
".document",
|
22
22
|
".rspec",
|
23
23
|
".rvmrc",
|
24
|
+
".travis.yml",
|
24
25
|
"Gemfile",
|
25
26
|
"Gemfile.lock",
|
26
27
|
"LICENSE.txt",
|
data/lib/give.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#
|
2
2
|
# Give
|
3
3
|
#
|
4
|
-
#
|
4
|
+
# give makes contributing to open source projects on Github just a little easier,
|
5
5
|
# by wrapping some simple commands around a common workflow.
|
6
6
|
#
|
7
7
|
##
|
metadata
CHANGED
@@ -1,128 +1,174 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: give
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 31
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 2
|
10
|
+
version: 0.1.2
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- seenmyfate
|
9
14
|
autorequire:
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
requirement: &
|
17
|
+
|
18
|
+
date: 2011-12-31 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
17
22
|
none: false
|
18
|
-
requirements:
|
19
|
-
- -
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
|
22
|
-
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
hash: 3
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
version: "0"
|
30
|
+
version_requirements: *id001
|
31
|
+
name: thor
|
23
32
|
prerelease: false
|
24
|
-
|
25
|
-
- !ruby/object:Gem::Dependency
|
26
|
-
|
27
|
-
requirement: &70223664222680 !ruby/object:Gem::Requirement
|
33
|
+
type: :runtime
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
28
36
|
none: false
|
29
|
-
requirements:
|
30
|
-
- - =
|
31
|
-
- !ruby/object:Gem::Version
|
37
|
+
requirements:
|
38
|
+
- - "="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
hash: 9
|
41
|
+
segments:
|
42
|
+
- 0
|
43
|
+
- 5
|
44
|
+
- 1
|
32
45
|
version: 0.5.1
|
33
|
-
|
46
|
+
version_requirements: *id002
|
47
|
+
name: octokit
|
34
48
|
prerelease: false
|
35
|
-
version_requirements: *70223664222680
|
36
|
-
- !ruby/object:Gem::Dependency
|
37
|
-
name: highline
|
38
|
-
requirement: &70223664221720 !ruby/object:Gem::Requirement
|
39
|
-
none: false
|
40
|
-
requirements:
|
41
|
-
- - ! '>='
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: '0'
|
44
49
|
type: :runtime
|
50
|
+
- !ruby/object:Gem::Dependency
|
51
|
+
requirement: &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
|
+
version_requirements: *id003
|
61
|
+
name: highline
|
45
62
|
prerelease: false
|
46
|
-
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
|
-
|
49
|
-
requirement: &70223664218820 !ruby/object:Gem::Requirement
|
63
|
+
type: :runtime
|
64
|
+
- !ruby/object:Gem::Dependency
|
65
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
50
66
|
none: false
|
51
|
-
requirements:
|
67
|
+
requirements:
|
52
68
|
- - ~>
|
53
|
-
- !ruby/object:Gem::Version
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
hash: 19
|
71
|
+
segments:
|
72
|
+
- 2
|
73
|
+
- 7
|
74
|
+
- 0
|
54
75
|
version: 2.7.0
|
55
|
-
|
76
|
+
version_requirements: *id004
|
77
|
+
name: rspec
|
56
78
|
prerelease: false
|
57
|
-
|
58
|
-
- !ruby/object:Gem::Dependency
|
59
|
-
|
60
|
-
requirement: &70223664272340 !ruby/object:Gem::Requirement
|
79
|
+
type: :development
|
80
|
+
- !ruby/object:Gem::Dependency
|
81
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
61
82
|
none: false
|
62
|
-
requirements:
|
83
|
+
requirements:
|
63
84
|
- - ~>
|
64
|
-
- !ruby/object:Gem::Version
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
hash: 7
|
87
|
+
segments:
|
88
|
+
- 0
|
89
|
+
- 6
|
90
|
+
- 0
|
65
91
|
version: 0.6.0
|
66
|
-
|
92
|
+
version_requirements: *id005
|
93
|
+
name: yard
|
67
94
|
prerelease: false
|
68
|
-
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
|
71
|
-
requirement: &70223664266760 !ruby/object:Gem::Requirement
|
95
|
+
type: :development
|
96
|
+
- !ruby/object:Gem::Dependency
|
97
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
72
98
|
none: false
|
73
|
-
requirements:
|
99
|
+
requirements:
|
74
100
|
- - ~>
|
75
|
-
- !ruby/object:Gem::Version
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
hash: 23
|
103
|
+
segments:
|
104
|
+
- 1
|
105
|
+
- 0
|
106
|
+
- 0
|
76
107
|
version: 1.0.0
|
77
|
-
|
108
|
+
version_requirements: *id006
|
109
|
+
name: bundler
|
78
110
|
prerelease: false
|
79
|
-
|
80
|
-
- !ruby/object:Gem::Dependency
|
81
|
-
|
82
|
-
requirement: &70223664296640 !ruby/object:Gem::Requirement
|
111
|
+
type: :development
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
83
114
|
none: false
|
84
|
-
requirements:
|
115
|
+
requirements:
|
85
116
|
- - ~>
|
86
|
-
- !ruby/object:Gem::Version
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
hash: 7
|
119
|
+
segments:
|
120
|
+
- 1
|
121
|
+
- 6
|
122
|
+
- 4
|
87
123
|
version: 1.6.4
|
88
|
-
|
124
|
+
version_requirements: *id007
|
125
|
+
name: jeweler
|
89
126
|
prerelease: false
|
90
|
-
version_requirements: *70223664296640
|
91
|
-
- !ruby/object:Gem::Dependency
|
92
|
-
name: rcov
|
93
|
-
requirement: &70223664348220 !ruby/object:Gem::Requirement
|
94
|
-
none: false
|
95
|
-
requirements:
|
96
|
-
- - ! '>='
|
97
|
-
- !ruby/object:Gem::Version
|
98
|
-
version: '0'
|
99
127
|
type: :development
|
128
|
+
- !ruby/object:Gem::Dependency
|
129
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
130
|
+
none: false
|
131
|
+
requirements:
|
132
|
+
- - ">="
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
hash: 3
|
135
|
+
segments:
|
136
|
+
- 0
|
137
|
+
version: "0"
|
138
|
+
version_requirements: *id008
|
139
|
+
name: rcov
|
100
140
|
prerelease: false
|
101
|
-
|
102
|
-
- !ruby/object:Gem::Dependency
|
103
|
-
|
104
|
-
requirement: &70223664346440 !ruby/object:Gem::Requirement
|
141
|
+
type: :development
|
142
|
+
- !ruby/object:Gem::Dependency
|
143
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
105
144
|
none: false
|
106
|
-
requirements:
|
145
|
+
requirements:
|
107
146
|
- - ~>
|
108
|
-
- !ruby/object:Gem::Version
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
hash: 15
|
149
|
+
segments:
|
150
|
+
- 1
|
151
|
+
- 2
|
152
|
+
- 8
|
109
153
|
version: 1.2.8
|
110
|
-
|
154
|
+
version_requirements: *id009
|
155
|
+
name: reek
|
111
156
|
prerelease: false
|
112
|
-
|
113
|
-
description: The aim of Give is to make contributing to open source projects on Github
|
114
|
-
just that bit easier, by wrapping some simple commands around a common workflow.
|
157
|
+
type: :development
|
158
|
+
description: The aim of Give is to make contributing to open source projects on Github just that bit easier, by wrapping some simple commands around a common workflow.
|
115
159
|
email: seenmyfate@gmail.com
|
116
|
-
executables:
|
160
|
+
executables:
|
117
161
|
- give
|
118
162
|
extensions: []
|
119
|
-
|
163
|
+
|
164
|
+
extra_rdoc_files:
|
120
165
|
- LICENSE.txt
|
121
166
|
- README.md
|
122
|
-
files:
|
167
|
+
files:
|
123
168
|
- .document
|
124
169
|
- .rspec
|
125
170
|
- .rvmrc
|
171
|
+
- .travis.yml
|
126
172
|
- Gemfile
|
127
173
|
- Gemfile.lock
|
128
174
|
- LICENSE.txt
|
@@ -137,31 +183,37 @@ files:
|
|
137
183
|
- spec/reek_spec.rb
|
138
184
|
- spec/spec_helper.rb
|
139
185
|
homepage: http://github.com/seenmyfate/give
|
140
|
-
licenses:
|
186
|
+
licenses:
|
141
187
|
- MIT
|
142
188
|
post_install_message:
|
143
189
|
rdoc_options: []
|
144
|
-
|
190
|
+
|
191
|
+
require_paths:
|
145
192
|
- lib
|
146
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
193
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
147
194
|
none: false
|
148
|
-
requirements:
|
149
|
-
- -
|
150
|
-
- !ruby/object:Gem::Version
|
151
|
-
|
152
|
-
segments:
|
195
|
+
requirements:
|
196
|
+
- - ">="
|
197
|
+
- !ruby/object:Gem::Version
|
198
|
+
hash: 3
|
199
|
+
segments:
|
153
200
|
- 0
|
154
|
-
|
155
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
201
|
+
version: "0"
|
202
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
156
203
|
none: false
|
157
|
-
requirements:
|
158
|
-
- -
|
159
|
-
- !ruby/object:Gem::Version
|
160
|
-
|
204
|
+
requirements:
|
205
|
+
- - ">="
|
206
|
+
- !ruby/object:Gem::Version
|
207
|
+
hash: 3
|
208
|
+
segments:
|
209
|
+
- 0
|
210
|
+
version: "0"
|
161
211
|
requirements: []
|
212
|
+
|
162
213
|
rubyforge_project:
|
163
214
|
rubygems_version: 1.8.10
|
164
215
|
signing_key:
|
165
216
|
specification_version: 3
|
166
217
|
summary: Makes contributing to open source projects on Github just that bit easier
|
167
218
|
test_files: []
|
219
|
+
|