blockscore 3.0.0 → 3.0.1
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/Gemfile +1 -4
- data/README.md +3 -3
- data/VERSION +1 -1
- data/blockscore.gemspec +6 -7
- metadata +4 -5
- data/Gemfile.lock +0 -76
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b3f88083287f1df3355f32db522587267dbf1497
|
|
4
|
+
data.tar.gz: b9cae6b6eaaa8385a159af1804e1c2af33b5cb9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c11985da2b727c576b8fa15fa716a4c676be5f4de5806dda35cfa77db431693533a09305593d922d9fbc4b376646553f4c44d208ea910a2aa9913172fda2bb51
|
|
7
|
+
data.tar.gz: 70d0be292789f0b3f0d1b666dc3b7a62fd71bb6b52b1e769114401e8317724da3344954f6cdc19aacf2be2d1ef0a72ff7217c3a9907e3ef5feac0ff7450026f5
|
data/Gemfile
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
source "https://rubygems.org"
|
|
2
|
-
# Add dependencies required to use your gem here.
|
|
3
|
-
# Example:
|
|
4
|
-
# gem "activesupport", ">= 2.3.5"
|
|
5
2
|
|
|
6
|
-
gem 'httparty', '~> 0.11
|
|
3
|
+
gem 'httparty', '~> 0.11'
|
|
7
4
|
|
|
8
5
|
# Add dependencies to develop your gem here.
|
|
9
6
|
# Include everything needed to run rake, tests, features, etc.
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# blockscore-ruby
|
|
2
2
|
|
|
3
|
-
This is the official library for Ruby clients of the BlockScore API. [Click here to read the full documentation](
|
|
3
|
+
This is the official library for Ruby clients of the BlockScore API. [Click here to read the full documentation including code examples](http://docs.blockscore.com/v3.0/ruby/).
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -13,7 +13,7 @@ gem install blockscore
|
|
|
13
13
|
If you are using Rails, add the following to your `Gemfile`:
|
|
14
14
|
|
|
15
15
|
```ruby
|
|
16
|
-
gem 'blockscore', '~>
|
|
16
|
+
gem 'blockscore', '~> 3.0.0'
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Getting Started
|
|
@@ -21,7 +21,7 @@ gem 'blockscore', '~> 2.1.1'
|
|
|
21
21
|
To get started, you can initialize the library with one line:
|
|
22
22
|
|
|
23
23
|
```ruby
|
|
24
|
-
client = BlockScore::Client.new('your-api-key', version =
|
|
24
|
+
client = BlockScore::Client.new('your-api-key', version = 3)
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
To see the list of calls you can make, please visit out [full Ruby API reference](http://docs.blockscore.com/ruby).
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1
|
data/blockscore.gemspec
CHANGED
|
@@ -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: blockscore 3.0.
|
|
5
|
+
# stub: blockscore 3.0.1 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "blockscore"
|
|
9
|
-
s.version = "3.0.
|
|
9
|
+
s.version = "3.0.1"
|
|
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 = ["Alain Meier"]
|
|
14
|
-
s.date = "2014-
|
|
14
|
+
s.date = "2014-10-22"
|
|
15
15
|
s.description = "A ruby client library for the BlockScore API."
|
|
16
16
|
s.email = "alain@blockscore.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -21,7 +21,6 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
s.files = [
|
|
22
22
|
".document",
|
|
23
23
|
"Gemfile",
|
|
24
|
-
"Gemfile.lock",
|
|
25
24
|
"LICENSE.txt",
|
|
26
25
|
"README.md",
|
|
27
26
|
"Rakefile",
|
|
@@ -55,14 +54,14 @@ Gem::Specification.new do |s|
|
|
|
55
54
|
s.specification_version = 4
|
|
56
55
|
|
|
57
56
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
58
|
-
s.add_runtime_dependency(%q<httparty>, ["~> 0.11
|
|
57
|
+
s.add_runtime_dependency(%q<httparty>, ["~> 0.11"])
|
|
59
58
|
s.add_development_dependency(%q<shoulda>, ["~> 3.1.0"])
|
|
60
59
|
s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
|
|
61
60
|
s.add_development_dependency(%q<bundler>, ["~> 1.0"])
|
|
62
61
|
s.add_development_dependency(%q<jeweler>, ["~> 2.0.1"])
|
|
63
62
|
s.add_development_dependency(%q<simplecov>, [">= 0"])
|
|
64
63
|
else
|
|
65
|
-
s.add_dependency(%q<httparty>, ["~> 0.11
|
|
64
|
+
s.add_dependency(%q<httparty>, ["~> 0.11"])
|
|
66
65
|
s.add_dependency(%q<shoulda>, ["~> 3.1.0"])
|
|
67
66
|
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
|
68
67
|
s.add_dependency(%q<bundler>, ["~> 1.0"])
|
|
@@ -70,7 +69,7 @@ Gem::Specification.new do |s|
|
|
|
70
69
|
s.add_dependency(%q<simplecov>, [">= 0"])
|
|
71
70
|
end
|
|
72
71
|
else
|
|
73
|
-
s.add_dependency(%q<httparty>, ["~> 0.11
|
|
72
|
+
s.add_dependency(%q<httparty>, ["~> 0.11"])
|
|
74
73
|
s.add_dependency(%q<shoulda>, ["~> 3.1.0"])
|
|
75
74
|
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
|
76
75
|
s.add_dependency(%q<bundler>, ["~> 1.0"])
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: blockscore
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alain Meier
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-10-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.11
|
|
19
|
+
version: '0.11'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.11
|
|
26
|
+
version: '0.11'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: shoulda
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -104,7 +104,6 @@ extra_rdoc_files:
|
|
|
104
104
|
files:
|
|
105
105
|
- ".document"
|
|
106
106
|
- Gemfile
|
|
107
|
-
- Gemfile.lock
|
|
108
107
|
- LICENSE.txt
|
|
109
108
|
- README.md
|
|
110
109
|
- Rakefile
|
data/Gemfile.lock
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
GEM
|
|
2
|
-
remote: https://rubygems.org/
|
|
3
|
-
specs:
|
|
4
|
-
activesupport (3.1.12)
|
|
5
|
-
multi_json (~> 1.0)
|
|
6
|
-
addressable (2.3.6)
|
|
7
|
-
bourne (1.5.0)
|
|
8
|
-
mocha (>= 0.13.2, < 0.15)
|
|
9
|
-
builder (3.2.2)
|
|
10
|
-
docile (1.1.5)
|
|
11
|
-
faraday (0.8.9)
|
|
12
|
-
multipart-post (~> 1.2.0)
|
|
13
|
-
git (1.2.7)
|
|
14
|
-
github_api (0.10.1)
|
|
15
|
-
addressable
|
|
16
|
-
faraday (~> 0.8.1)
|
|
17
|
-
hashie (>= 1.2)
|
|
18
|
-
multi_json (~> 1.4)
|
|
19
|
-
nokogiri (~> 1.5.2)
|
|
20
|
-
oauth2
|
|
21
|
-
hashie (3.0.0)
|
|
22
|
-
highline (1.6.21)
|
|
23
|
-
httparty (0.11.0)
|
|
24
|
-
multi_json (~> 1.0)
|
|
25
|
-
multi_xml (>= 0.5.2)
|
|
26
|
-
jeweler (2.0.1)
|
|
27
|
-
builder
|
|
28
|
-
bundler (>= 1.0)
|
|
29
|
-
git (>= 1.2.5)
|
|
30
|
-
github_api
|
|
31
|
-
highline (>= 1.6.15)
|
|
32
|
-
nokogiri (>= 1.5.10)
|
|
33
|
-
rake
|
|
34
|
-
rdoc
|
|
35
|
-
json (1.8.1)
|
|
36
|
-
jwt (1.0.0)
|
|
37
|
-
metaclass (0.0.4)
|
|
38
|
-
mocha (0.14.0)
|
|
39
|
-
metaclass (~> 0.0.1)
|
|
40
|
-
multi_json (1.10.1)
|
|
41
|
-
multi_xml (0.5.5)
|
|
42
|
-
multipart-post (1.2.0)
|
|
43
|
-
nokogiri (1.5.11)
|
|
44
|
-
oauth2 (0.9.4)
|
|
45
|
-
faraday (>= 0.8, < 0.10)
|
|
46
|
-
jwt (~> 1.0)
|
|
47
|
-
multi_json (~> 1.3)
|
|
48
|
-
multi_xml (~> 0.5)
|
|
49
|
-
rack (~> 1.2)
|
|
50
|
-
rack (1.5.2)
|
|
51
|
-
rake (10.3.2)
|
|
52
|
-
rdoc (3.12.2)
|
|
53
|
-
json (~> 1.4)
|
|
54
|
-
shoulda (3.1.1)
|
|
55
|
-
shoulda-context (~> 1.0)
|
|
56
|
-
shoulda-matchers (~> 1.2)
|
|
57
|
-
shoulda-context (1.2.1)
|
|
58
|
-
shoulda-matchers (1.5.6)
|
|
59
|
-
activesupport (>= 3.0.0)
|
|
60
|
-
bourne (~> 1.3)
|
|
61
|
-
simplecov (0.8.2)
|
|
62
|
-
docile (~> 1.1.0)
|
|
63
|
-
multi_json
|
|
64
|
-
simplecov-html (~> 0.8.0)
|
|
65
|
-
simplecov-html (0.8.0)
|
|
66
|
-
|
|
67
|
-
PLATFORMS
|
|
68
|
-
ruby
|
|
69
|
-
|
|
70
|
-
DEPENDENCIES
|
|
71
|
-
bundler (~> 1.0)
|
|
72
|
-
httparty (~> 0.11.0)
|
|
73
|
-
jeweler (~> 2.0.1)
|
|
74
|
-
rdoc (~> 3.12)
|
|
75
|
-
shoulda (~> 3.1.0)
|
|
76
|
-
simplecov
|