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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 197a043cf1783c3b0ed6272e242aa4ba05f83827
4
- data.tar.gz: ed23ac18b65f24b5779ee31ea2f49416a8ff4060
3
+ metadata.gz: 6ed6269e5517344b937638945265ae37b92fa30a
4
+ data.tar.gz: 02a0c863703e15e338bc8c413aba05a97bbb730b
5
5
  SHA512:
6
- metadata.gz: 6eba9df86055432363d2c62261536063149a7b084e7e4962c0205c403b2c7598ac68f0ee91e08cf101600e27066aaf99b25b02aa2853c6fdb24e9681026c1aac
7
- data.tar.gz: 0adb81445e022772c0db59c8dc4c65d2f643d008a6324e4e204392400dbf69e7dbd8fb3515865dcf4b622a6d893d2d2d231555b88b5db1b06781a6f5e3dfc943
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-new-feature`)
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
@@ -1,3 +1,3 @@
1
1
  module Gripst
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
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.2
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-30 00:00:00.000000000 Z
11
+ date: 2014-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: octokit