toshi 0.1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: eb95632f8c149eca90a02c04c51c8af105a20c03
4
+ data.tar.gz: 5a4abad0711be2a4588931c40c289b319f95445e
5
+ SHA512:
6
+ metadata.gz: 6f19111ab1243a45a71cc7d5d41a98fa0889bb174e93aef893472087f15f81ff524e01bdcaeed56bdd3d083f6885d44fc67642250e6b58efb5c0367afbc30a7f
7
+ data.tar.gz: e723aaa14c6ba6752cd8078a4a098da18456d2029dea2b0bf5a612853f7ed05256bda84618d0671cbf733181906da8ec1fc3d568bfed94faf6c45f1f3da898fb
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1 @@
1
+ 2.3.0
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.3.0
4
+ before_install: gem install bundler -v 1.11.2
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in toshi.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Gary Rafferty
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,56 @@
1
+ # Toshi
2
+
3
+ A ruby wrapper around Coinbase's [Toshi](https://toshi.io/)
4
+
5
+ [![Build Status](https://travis-ci.org/gary-rafferty/toshi.svg?branch=master)](https://travis-ci.org/gary-rafferty/toshi)
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'toshi'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install toshi
22
+
23
+ ## Usage
24
+
25
+ ```ruby
26
+ # Blocks
27
+
28
+ Toshi::Block.latest # returns a Block instance
29
+ Toshi::Block.find('hash') # returns a Block instance
30
+ Toshi::Block.find('height') # returns a Block instance
31
+ Toshi::Block.all # returns an array of Block instances
32
+
33
+ # Transactions
34
+
35
+ Toshi::Transaction.find('hash') # returns a Transaction instance
36
+ Toshi::Transaction.unconfirmed # returns an array of Transaction instances
37
+
38
+ # Addresses
39
+ Toshi::Address.find('hash') # returns an Address instance
40
+ ```
41
+
42
+ ## Development
43
+
44
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
45
+
46
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
47
+
48
+ ## Contributing
49
+
50
+ Bug reports and pull requests are welcome on GitHub at https://github.com/gary-rafferty/toshi.
51
+
52
+
53
+ ## License
54
+
55
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
56
+
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "toshi"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,13 @@
1
+ require "toshi/version"
2
+
3
+ require "httparty"
4
+
5
+ require "toshi/client"
6
+ require "toshi/api_resource"
7
+ require "toshi/address"
8
+ require "toshi/block"
9
+ require "toshi/transaction"
10
+ require "toshi/request"
11
+
12
+ module Toshi
13
+ end
@@ -0,0 +1,10 @@
1
+ module Toshi
2
+ class Address < ApiResource
3
+ class << self
4
+ def find(identifier)
5
+ response = client.get '/addresses/'+identifier.to_s
6
+ create_one(response)
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,35 @@
1
+ module Toshi
2
+ class ApiResource
3
+
4
+ class << self
5
+ def create_one(attributes)
6
+ self.new(attributes)
7
+ end
8
+
9
+ def create_many(collection)
10
+ collection.map { |attr| self.new(attr) }
11
+ end
12
+
13
+ def client
14
+ Toshi::Client
15
+ end
16
+ end
17
+
18
+ def initialize(attributes = {})
19
+ from_hash(attributes)
20
+ end
21
+
22
+ def from_hash(attributes)
23
+ attributes.each do |key, val|
24
+ instance_variable_set("@#{key}", val)
25
+ self.class.send(:define_method, key) do
26
+ instance_variable_get "@#{key}"
27
+ end
28
+ end
29
+ end
30
+
31
+ def client
32
+ Toshi::Client
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,25 @@
1
+ module Toshi
2
+ class Block < ApiResource
3
+ class << self
4
+ def all
5
+ response = client.get '/blocks'
6
+ create_many(response)
7
+ end
8
+
9
+ def find(identifier)
10
+ response = client.get '/blocks/'+identifier.to_s
11
+ create_one(response)
12
+ end
13
+
14
+ def latest
15
+ response = client.get '/blocks/latest'
16
+ create_one(response)
17
+ end
18
+ end
19
+
20
+ def transactions
21
+ response = client.get '/blocks/'+hash+'/transactions'
22
+ self.class.create_one(response)
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,16 @@
1
+ module Toshi
2
+ class Client
3
+ @@base_url = "http://bitcoin.toshi.io/api/v0"
4
+
5
+ class << self
6
+ def get(path)
7
+ url = url_for(path)
8
+ Toshi::Request.get(url)
9
+ end
10
+
11
+ def url_for(path)
12
+ @@base_url + path
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,9 @@
1
+ module Toshi
2
+ class Request
3
+ class << self
4
+ def get(url)
5
+ HTTParty.get(url).parsed_response
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,15 @@
1
+ module Toshi
2
+ class Transaction < ApiResource
3
+ class << self
4
+ def find(identifier)
5
+ response = client.get '/transactions/'+identifier.to_s
6
+ create_one(response)
7
+ end
8
+
9
+ def unconfirmed
10
+ response = client.get '/transactions/unconfirmed'
11
+ create_many(response)
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,3 @@
1
+ module Toshi
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'toshi/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "toshi"
8
+ spec.version = Toshi::VERSION
9
+ spec.authors = ["Gary Rafferty"]
10
+ spec.email = ["gary.rafferty@gmail.com"]
11
+
12
+ spec.summary = %q{Ruby client for Toshi API}
13
+ spec.description = %q{Ruby client for Toshi API}
14
+ spec.homepage = ""
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_dependency "httparty", "~> 0.14.0"
23
+ spec.add_development_dependency "bundler", "~> 1.11"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "rspec", "~> 3.0"
26
+ spec.add_development_dependency "pry", "~> 0.10.4"
27
+ end
metadata ADDED
@@ -0,0 +1,133 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: toshi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Gary Rafferty
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-08-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: httparty
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.14.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.14.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.11'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.11'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.10.4
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.10.4
83
+ description: Ruby client for Toshi API
84
+ email:
85
+ - gary.rafferty@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".rspec"
92
+ - ".ruby-version"
93
+ - ".travis.yml"
94
+ - Gemfile
95
+ - LICENSE.txt
96
+ - README.md
97
+ - Rakefile
98
+ - bin/console
99
+ - bin/setup
100
+ - lib/toshi.rb
101
+ - lib/toshi/address.rb
102
+ - lib/toshi/api_resource.rb
103
+ - lib/toshi/block.rb
104
+ - lib/toshi/client.rb
105
+ - lib/toshi/request.rb
106
+ - lib/toshi/transaction.rb
107
+ - lib/toshi/version.rb
108
+ - toshi.gemspec
109
+ homepage: ''
110
+ licenses:
111
+ - MIT
112
+ metadata: {}
113
+ post_install_message:
114
+ rdoc_options: []
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ requirements: []
128
+ rubyforge_project:
129
+ rubygems_version: 2.5.1
130
+ signing_key:
131
+ specification_version: 4
132
+ summary: Ruby client for Toshi API
133
+ test_files: []