gripst 0.0.2 → 0.0.3
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/contributing.md +6 -1
- data/lib/gripst/version.rb +1 -1
- data/spec/gripst_spec.rb +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ed6269e5517344b937638945265ae37b92fa30a
|
|
4
|
+
data.tar.gz: 02a0c863703e15e338bc8c413aba05a97bbb730b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59544570db4e63077bfe5a370d20f41c98bdf9cfe9720900e41174baf193dd295465a5d3695aa6e605bba2805cca8dae13cc814e7823d37af854b8edbdbcf6ae
|
|
7
|
+
data.tar.gz: fc174fc589b11912179021af718f9f83f2f7480d74e58a2c351020f5e69de530edce1abf272cf555be89a89ecad67f2fde3d1f43020a88591dd134b501f879d4
|
data/contributing.md
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
## Contributing
|
|
2
2
|
|
|
3
3
|
1. Fork it
|
|
4
|
-
2. Create your feature branch (`git checkout -b my-
|
|
4
|
+
2. Create your feature branch (`git checkout -b bug/12-my-bug-fix`)
|
|
5
|
+
- please prepend your branch name with its category (feature, bug etc)
|
|
6
|
+
- if there is an issue associated, please add if after the `/` in
|
|
7
|
+
branch name
|
|
8
|
+
- please use dashes, not underscores, in branch naming
|
|
5
9
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
6
10
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
7
11
|
5. Create new Pull Request
|
|
8
12
|
|
|
9
13
|
## Tests
|
|
10
14
|
|
|
15
|
+
[RSpec](https://github.com/rspec/rspec) must be installed
|
|
11
16
|
```
|
|
12
17
|
git clone git@github.com:maxbeizer/gripst.git
|
|
13
18
|
rake install
|
data/lib/gripst/version.rb
CHANGED
data/spec/gripst_spec.rb
CHANGED
|
@@ -3,6 +3,10 @@ require_relative '../lib/gripst'
|
|
|
3
3
|
require 'pry'
|
|
4
4
|
|
|
5
5
|
RSpec.describe Gripst do
|
|
6
|
+
before :all do
|
|
7
|
+
$stderr.reopen '/dev/null', 'w'
|
|
8
|
+
end
|
|
9
|
+
|
|
6
10
|
context 'without a user_access_token' do
|
|
7
11
|
it '#initialized? returns false' do
|
|
8
12
|
stub_const('ENV', { 'GITHUB_USER_ACCESS_TOKEN' => nil })
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gripst
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Max Beizer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-12-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: octokit
|