crowdskout 0.1.3 → 0.1.4
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/crowdskout.gemspec +1 -1
- data/lib/crowdskout/api.rb +1 -1
- data/lib/crowdskout/version.rb +1 -1
- 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: 6f23aa4d157b3b993fcd28f8e16783c58ff7fe0f
|
|
4
|
+
data.tar.gz: f68b4f7c26b4ccd5c6da9227e00ceb47c5321b10
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e109ed031890c808e96d44dc5b3f7678a767e9809a7ffe154f800989c38e801c522cae6a78f597add804f5114bdc8d57727b9bbdcd955abc2337e1b6a49483d
|
|
7
|
+
data.tar.gz: 734fe14976b4bdd053727fbb2538a2c74d58f865d6ea81978e262481255c827a67aef2dbe27ee458f9903608431eb19f8dff2f0433f8a86e0dbdb14b3f4aaa4f
|
data/crowdskout.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "crowdskout"
|
|
8
|
-
s.version = '0.1.
|
|
8
|
+
s.version = '0.1.4'
|
|
9
9
|
s.platform = Gem::Platform::RUBY
|
|
10
10
|
s.authors = ["Crowdskout", "Revv","Kyle Schutt"]
|
|
11
11
|
s.homepage = "https://github.com/revvco/crowdskout"
|
data/lib/crowdskout/api.rb
CHANGED
|
@@ -10,7 +10,7 @@ module Crowdskout
|
|
|
10
10
|
# @param [String] api_key - Crowdskout API Key
|
|
11
11
|
# @param [String] access_token - Crowdskout OAuth2 access token
|
|
12
12
|
# @return
|
|
13
|
-
def initialize(api_key = nil, access_token = nil)
|
|
13
|
+
def initialize(api_key = nil, access_token = nil)
|
|
14
14
|
@api_key = api_key || Util::Config.get('auth.api_key')
|
|
15
15
|
@access_token = access_token
|
|
16
16
|
if @api_key.nil? || @api_key == ''
|
data/lib/crowdskout/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: crowdskout
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Crowdskout
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2017-
|
|
13
|
+
date: 2017-11-06 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rest-client
|