gawky 0.0.1 → 0.0.2.pre1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a00d0407e9f712e6ee16fd9801c22badb56aedfc
4
- data.tar.gz: 1f940bf6bbd245e723b41e1e0a1b14c9ff9be963
3
+ metadata.gz: ee10b8d76dd03b8c60e4f46ee1da08f38e004a72
4
+ data.tar.gz: a0ba0be9ddabffa19fa42528459cbd37d5ca4349
5
5
  SHA512:
6
- metadata.gz: f58abcc7e66061869dff79168a8f5fe33b6066dd2227e5bf0d27f78b517e377f6e8797a087b82a80c6e4ea32f87d70da04d88c8226dbbe07fea052fa3eb23205
7
- data.tar.gz: 2ac3333f46c0e5c6b3c71aa252ba639c58034830d78686b74f3712231efd3063c442cdf43c03f94d09ee6614831a8f646767c791fbbf19fe39f2238cbe84bee4
6
+ metadata.gz: 7c5f7fe76fe8b274c156db0b4566319106037133ab7c68ab1552f404c738e8ef31d129cc8599925a33633c20676e0d09b89bf8989cf83ac015a68b4fd24c73b9
7
+ data.tar.gz: 50e645da4c7701e9e9fb4f607037093457d7303d94e0f9097b4cbfa251d9626e05e33ec2f2fe807eae7cdfe5b95307ac87ab2cdf0029107c4a44633a3b014018
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gawky (0.0.1)
4
+ gawky (0.0.2.pre1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,7 +1,15 @@
1
1
  # Gawky
2
+ ![](http://photon.abstractj.org/gawky.jpg)
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 --local gawky.gemspec
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
- Rename the sample.json file to gawky.json and copy to your HOME directory
37
+ {
38
+ "token":"42", //GitHub token
39
+ "maxElapsedDays":5
40
+ }
18
41
 
19
42
  ## Usage
20
43
 
21
- $ bin/gawky or bin/gawky [organization name]
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 yeah it's missing
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
@@ -1,6 +1,9 @@
1
1
  #!/usr/bin/env ruby
2
2
  # -*- mode: ruby -*-
3
3
 
4
+ lib_dir = File.join(File.dirname(__FILE__), '..', 'lib')
5
+ $LOAD_PATH.unshift lib_dir if File.directory?(lib_dir)
6
+
4
7
  require 'gawky'
5
8
 
6
9
  gawky = Gawky::Runner.new
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
@@ -1,3 +1,3 @@
1
1
  module Gawky
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2.pre1"
3
3
  end
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.1
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: '0'
79
+ version: 1.3.1
80
80
  requirements: []
81
81
  rubyforge_project:
82
82
  rubygems_version: 2.1.11