gawky 0.0.1 → 0.0.2.pre1
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/Gemfile.lock +1 -1
- data/README.md +27 -4
- data/bin/gawky +3 -0
- data/gawky.gemspec +1 -0
- data/lib/gawky/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee10b8d76dd03b8c60e4f46ee1da08f38e004a72
|
|
4
|
+
data.tar.gz: a0ba0be9ddabffa19fa42528459cbd37d5ca4349
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c5f7fe76fe8b274c156db0b4566319106037133ab7c68ab1552f404c738e8ef31d129cc8599925a33633c20676e0d09b89bf8989cf83ac015a68b4fd24c73b9
|
|
7
|
+
data.tar.gz: 50e645da4c7701e9e9fb4f607037093457d7303d94e0f9097b4cbfa251d9626e05e33ec2f2fe807eae7cdfe5b95307ac87ab2cdf0029107c4a44633a3b014018
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
# Gawky
|
|
2
|
+

|
|
2
3
|
|
|
3
4
|
A tiny and simple console tool for pull requests
|
|
4
5
|
|
|
6
|
+
## Requirements
|
|
7
|
+
|
|
8
|
+
- Ruby 1.9 or superior
|
|
9
|
+
- Install bundler
|
|
10
|
+
|
|
11
|
+
`$ gem install bundler`
|
|
12
|
+
|
|
5
13
|
## Installation
|
|
6
14
|
|
|
7
15
|
Clone the repository
|
|
@@ -12,19 +20,34 @@ And then execute:
|
|
|
12
20
|
|
|
13
21
|
Or install it yourself as:
|
|
14
22
|
|
|
15
|
-
$ gem install
|
|
23
|
+
$ gem install gawky
|
|
24
|
+
|
|
25
|
+
For OSx users
|
|
26
|
+
|
|
27
|
+
$ brew install brew-gem
|
|
28
|
+
$ git clone https://github.com/abstractj/gawky.git && cd gawky && bundle install //Workaround until fix this [issue](https://github.com/abstractj/gawky/issues/1)
|
|
29
|
+
$ brew gem gawky
|
|
30
|
+
|
|
31
|
+
Copy the sample.json file to gawky.json at your HOME directory
|
|
32
|
+
|
|
33
|
+
$ cp sample.json $HOME/.gawky.json
|
|
34
|
+
|
|
35
|
+
Please make sure to change the values:
|
|
16
36
|
|
|
17
|
-
|
|
37
|
+
{
|
|
38
|
+
"token":"42", //GitHub token
|
|
39
|
+
"maxElapsedDays":5
|
|
40
|
+
}
|
|
18
41
|
|
|
19
42
|
## Usage
|
|
20
43
|
|
|
21
|
-
$
|
|
44
|
+
$ gawky or gawky [organization name]
|
|
22
45
|
|
|
23
46
|
## Contributing
|
|
24
47
|
|
|
25
48
|
1. Fork it ( https://github.com/[my-github-username]/gawky/fork )
|
|
26
49
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
27
|
-
3. Add unit tests, because
|
|
50
|
+
3. Add unit tests, because the project doesn't have it. Yeah, bring me a torch.
|
|
28
51
|
4. Commit your changes (`git commit -am 'Add some feature'`)
|
|
29
52
|
5. Push to the branch (`git push origin my-new-feature`)
|
|
30
53
|
6. Create a new Pull Request
|
data/bin/gawky
CHANGED
data/gawky.gemspec
CHANGED
|
@@ -9,6 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Bruno Oliveira"]
|
|
10
10
|
spec.email = ["bruno@abstractj.org"]
|
|
11
11
|
spec.summary = %q{A tiny and simple console tool for pull requests}
|
|
12
|
+
spec.description = %q{Pull request console wrapper}
|
|
12
13
|
spec.homepage = "https://github.com/abstractj/gawky"
|
|
13
14
|
spec.license = "MIT"
|
|
14
15
|
|
data/lib/gawky/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gawky
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2.pre1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bruno Oliveira
|
|
@@ -38,7 +38,7 @@ dependencies:
|
|
|
38
38
|
- - '>='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
description:
|
|
41
|
+
description: Pull request console wrapper
|
|
42
42
|
email:
|
|
43
43
|
- bruno@abstractj.org
|
|
44
44
|
executables:
|
|
@@ -74,9 +74,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
74
74
|
version: '0'
|
|
75
75
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
|
77
|
-
- - '
|
|
77
|
+
- - '>'
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
|
-
version:
|
|
79
|
+
version: 1.3.1
|
|
80
80
|
requirements: []
|
|
81
81
|
rubyforge_project:
|
|
82
82
|
rubygems_version: 2.1.11
|