basico-octakit 1.3.0 → 1.4.0

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: df4f771d39328f9bd9f7f4e976579fbdfecf3e88
4
- data.tar.gz: e3cf5173f86422dc7c6a6cb9a0b1f1c947691cf7
3
+ metadata.gz: 7743905dd53776eac6d2b2ff81c7e4e1f8321e24
4
+ data.tar.gz: 1cf30d42be90a53754cec282f814391d2c051d7a
5
5
  SHA512:
6
- metadata.gz: e3f5a589687d78d0b3df34bed1ef53dd3d90b1be6a1e5d1e396a20214bde511f46d633ebd37e1afed87e82960b9393029bd2f18a6a669f874fb70d29cd7e3b95
7
- data.tar.gz: 5ef3760b53d08f82514935f148c5d2f57c11953e124e723f771e3176c8948f802abdf61e92c1c7f21f888c8e7c939912ec87153e5e7bcd6aaa0a6cf093c08f15
6
+ metadata.gz: cee1cd7c4b7a481942a70cf3f9c0df1e3b8e1c8c0ce34fca4d7c32d5724e1b183e561008c6410e10d1d86dfb0a269353c572ebc3192aa40616945aa360b522ba
7
+ data.tar.gz: 56aac062dd6ce3bd671c7dd3e36d367df3d62ce957ce190748898d9d06566aadd826c327833b92e8e3ebab0bb9c0707794cb09a219ca1ab956e548522fe687ce
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.0
1
+ 1.4.0
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: basico-octakit 1.3.0 ruby lib
5
+ # stub: basico-octakit 1.4.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "basico-octakit"
9
- s.version = "1.3.0"
9
+ s.version = "1.4.0"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["rickybell", "renatodex"]
14
- s.date = "2015-10-09"
14
+ s.date = "2015-10-13"
15
15
  s.description = "A cool Github SDK"
16
16
  s.email = "henrique.belloube@gmail.com, renatodex@gmail.com"
17
17
  s.extra_rdoc_files = [
@@ -42,17 +42,13 @@ Gem::Specification.new do |s|
42
42
  "lib/basico-octokit/models/ticket_user.rb",
43
43
  "lib/basico-octokit/summary_api/issues.rb",
44
44
  "lib/basico-octokit/summary_api/summary_collection_array.rb",
45
- "spec/basico-octokit_spec.rb",
46
45
  "spec/factories/summary.rb",
47
46
  "spec/factories/summary_label.rb",
48
47
  "spec/factories/summary_user.rb",
49
48
  "spec/factories/ticket.rb",
50
49
  "spec/factories/ticket_label.rb",
51
50
  "spec/factories/ticket_user.rb",
52
- "spec/issues_spec.rb",
53
- "spec/label_spec.rb",
54
51
  "spec/spec_helper.rb",
55
- "spec/sumary_spec.rb",
56
52
  "spec/summary_api/issues_spec.rb"
57
53
  ]
58
54
  s.homepage = "http://github.com/lojabasico/basico-octokit"
@@ -6,9 +6,7 @@ require 'octokit'
6
6
  require 'singleton'
7
7
  require 'virtus'
8
8
  require 'inflecto'
9
- require 'factory_girl'
10
9
  require 'date'
11
- require 'pry'
12
10
  require 'json'
13
11
 
14
12
  require 'basico-octokit/initializers/exceptions'
data/spec/spec_helper.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  require 'bundler'
2
2
  Bundler.setup
3
3
  require 'simplecov'
4
+ require 'factory_girl'
4
5
  class FakeClient
5
6
 
6
7
  attr_accessor :auto_paginate
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: basico-octakit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - rickybell
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-10-09 00:00:00.000000000 Z
12
+ date: 2015-10-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: octokit
@@ -252,17 +252,13 @@ files:
252
252
  - lib/basico-octokit/models/ticket_user.rb
253
253
  - lib/basico-octokit/summary_api/issues.rb
254
254
  - lib/basico-octokit/summary_api/summary_collection_array.rb
255
- - spec/basico-octokit_spec.rb
256
255
  - spec/factories/summary.rb
257
256
  - spec/factories/summary_label.rb
258
257
  - spec/factories/summary_user.rb
259
258
  - spec/factories/ticket.rb
260
259
  - spec/factories/ticket_label.rb
261
260
  - spec/factories/ticket_user.rb
262
- - spec/issues_spec.rb
263
- - spec/label_spec.rb
264
261
  - spec/spec_helper.rb
265
- - spec/sumary_spec.rb
266
262
  - spec/summary_api/issues_spec.rb
267
263
  homepage: http://github.com/lojabasico/basico-octokit
268
264
  licenses:
@@ -1,7 +0,0 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
-
3
- describe "BasicoOctokit" do
4
- it "fails" do
5
- fail "hey buddy, you should probably rename this file and start specing for real"
6
- end
7
- end
data/spec/issues_spec.rb DELETED
@@ -1,9 +0,0 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
-
3
- describe "Issues" do
4
- describe "#get" do
5
- it "fails" do
6
- expect().to eq(nil)
7
- end
8
- end
9
- end
data/spec/label_spec.rb DELETED
File without changes
data/spec/sumary_spec.rb DELETED
File without changes