smashrun-ruby 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/smashrun/client.rb +1 -1
- data/smashrun-ruby.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9933ab7a4d03fabdde1506b9e11b0c6373db9550
|
4
|
+
data.tar.gz: c4fd2cd6ea33c40da6b1b70b4fc98d2165439213
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84bc5dbfb0c45811687fc4f73e51ee9ff6a7dc6b834760d588ea6342afea8f77297d737a701f08611d6e6da12c09607ef035374bfb8b428bdd40307088fefadd
|
7
|
+
data.tar.gz: 1ad401357bd282d2f7773d6cf1d9e8b53a71d9b7c8bc5bdfe1e40266cc7cdde02391f018e43b530b4e7215e5532ba55b1b66f0caf785ddef45cbcdadb11306cc
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/lib/smashrun/client.rb
CHANGED
@@ -6,7 +6,7 @@ module Smashrun
|
|
6
6
|
}
|
7
7
|
|
8
8
|
def initialize(access_token)
|
9
|
-
client = OAuth2::Client.new(client_id, client_secret, OAUTH_URLS)
|
9
|
+
client = OAuth2::Client.new(Smashrun.client_id, Smashrun.client_secret, OAUTH_URLS)
|
10
10
|
|
11
11
|
@token = OAuth2::AccessToken.new(client, access_token)
|
12
12
|
end
|
data/smashrun-ruby.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: smashrun-ruby 0.1.
|
5
|
+
# stub: smashrun-ruby 0.1.2 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "smashrun-ruby"
|
9
|
-
s.version = "0.1.
|
9
|
+
s.version = "0.1.2"
|
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"]
|