eyeofsatoshi 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 40aeedae8311cb5456d494e67aeea36cf16fccad4024ec04439894653b08be57
4
+ data.tar.gz: b0bce3ebb68f6af7516231fbd55293d46e9e133d38748a554be5819a60ec14fa
5
+ SHA512:
6
+ metadata.gz: 5d5bffb7a7bd625e96b260377693ddf37ba319b32092f16919f46a648b802f58ff253026d71a6264afe205b28d49adcc049c81c045824bfce327e9aebcafea09
7
+ data.tar.gz: 5d1fc7d275e9b1b792b3d1c5d51fe7eae64fb24bf8a85c591feee104d4c5c45203d0e9ab383c4b3fddf6bb136f21e8bb6076d02bb8a407223c8411dc3a256420
@@ -0,0 +1,18 @@
1
+ name: Ruby
2
+
3
+ on: [push,pull_request]
4
+
5
+ jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: Set up Ruby
11
+ uses: ruby/setup-ruby@v1
12
+ with:
13
+ ruby-version: 3.0.0
14
+ - name: Run the default task
15
+ run: |
16
+ gem install bundler -v 2.2.8
17
+ bundle install
18
+ bundle exec rake
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.4
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [0.1.0]
2
+
3
+ ## [0.1.0] - 2021-03-28
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at hello@willbinns.org. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in eyeofsatoshi.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.7"
13
+
14
+ gem "httparty"
data/Gemfile.lock ADDED
@@ -0,0 +1,64 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ eyeofsatoshi (0.1.0)
5
+ httparty
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ ast (2.4.2)
11
+ diff-lcs (1.4.4)
12
+ httparty (0.18.1)
13
+ mime-types (~> 3.0)
14
+ multi_xml (>= 0.5.2)
15
+ mime-types (3.3.1)
16
+ mime-types-data (~> 3.2015)
17
+ mime-types-data (3.2021.0225)
18
+ multi_xml (0.6.0)
19
+ parallel (1.20.1)
20
+ parser (3.0.0.0)
21
+ ast (~> 2.4.1)
22
+ rainbow (3.0.0)
23
+ rake (13.0.3)
24
+ regexp_parser (2.1.1)
25
+ rexml (3.2.4)
26
+ rspec (3.10.0)
27
+ rspec-core (~> 3.10.0)
28
+ rspec-expectations (~> 3.10.0)
29
+ rspec-mocks (~> 3.10.0)
30
+ rspec-core (3.10.1)
31
+ rspec-support (~> 3.10.0)
32
+ rspec-expectations (3.10.1)
33
+ diff-lcs (>= 1.2.0, < 2.0)
34
+ rspec-support (~> 3.10.0)
35
+ rspec-mocks (3.10.2)
36
+ diff-lcs (>= 1.2.0, < 2.0)
37
+ rspec-support (~> 3.10.0)
38
+ rspec-support (3.10.2)
39
+ rubocop (1.12.0)
40
+ parallel (~> 1.10)
41
+ parser (>= 3.0.0.0)
42
+ rainbow (>= 2.2.2, < 4.0)
43
+ regexp_parser (>= 1.8, < 3.0)
44
+ rexml
45
+ rubocop-ast (>= 1.2.0, < 2.0)
46
+ ruby-progressbar (~> 1.7)
47
+ unicode-display_width (>= 1.4.0, < 3.0)
48
+ rubocop-ast (1.4.1)
49
+ parser (>= 2.7.1.5)
50
+ ruby-progressbar (1.11.0)
51
+ unicode-display_width (2.0.0)
52
+
53
+ PLATFORMS
54
+ x86_64-darwin-20
55
+
56
+ DEPENDENCIES
57
+ eyeofsatoshi!
58
+ httparty
59
+ rake (~> 13.0)
60
+ rspec (~> 3.0)
61
+ rubocop (~> 1.7)
62
+
63
+ BUNDLED WITH
64
+ 2.2.15
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021
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.
data/README.md ADDED
@@ -0,0 +1,53 @@
1
+ # Eye of Satoshi
2
+
3
+ A ruby gem that pulls the current bitcoin price from multiple cryptocurrency APIs. Ensure your app is getting the correct price by weighting against multiple sources of truth to ensure you and/or your users don't get rekt by incorrect information.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'eyeofsatoshi'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install eyeofsatoshi
20
+
21
+ ## Usage
22
+
23
+ An example wrapper (`wrapper.rb`) is included in the `examples` folder to demonstrate how Eye of Satoshi can be used.
24
+
25
+ ## Development
26
+
27
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
28
+
29
+ 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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/wbnns/eyeofsatoshi. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/wbnns/eyeofsatoshi/blob/master/CODE_OF_CONDUCT.md).
34
+
35
+ ## License
36
+
37
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
38
+
39
+ ## Code of Conduct
40
+
41
+ Everyone interacting in the Eye of Satoshi's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/wbnns/eyeofsatoshi/blob/master/CODE_OF_CONDUCT.md).
42
+
43
+ ## Acknowledgements
44
+
45
+ This gem would not be possible without the work of **Zayne**. It is entirely based on code from one of his tutorials about [using Ruby to interact with cryptocurrency APIs](https://www.youtube.com/watch?v=dP230gkXS0I).
46
+
47
+ Check him out on:
48
+
49
+ - [GitHub](https://github.com/zayneio)
50
+ - [Zayne.io](https://zayne.io/)
51
+ - [YouTube](https://www.youtube.com/channel/UCkoEStUK7wxmZef2DcPuCAQ/videos)
52
+
53
+ ...and please consider supporting him on [Patreon](https://www.patreon.com/zayne_)!
data/Rakefile ADDED
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+
6
+ Rake::TestTask.new(:test) do |t|
7
+ t.libs << "test"
8
+ t.libs << "lib"
9
+ t.test_files = FileList["test/**/*_test.rb"]
10
+ end
11
+
12
+ require "rubocop/rake_task"
13
+
14
+ RuboCop::RakeTask.new
15
+
16
+ task default: %i[test rubocop]
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require "eyeofsatoshi"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require "irb"
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -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,19 @@
1
+ require '../lib/base'
2
+ require '../lib/coinbase'
3
+ require '../lib/coincap'
4
+ require '../lib/coingecko'
5
+ require '../lib/coinpaprika'
6
+ require '../lib/cryptocompare'
7
+
8
+ module Eyeofsatoshi
9
+ class Wrapper < Base
10
+ %w[coinbase coincap coingecko coinpaprika cryptocompare].each do |api|
11
+ define_method(api.to_sym) do
12
+ Object.const_get("Api::#{klassify(api)}").new(@options).request
13
+ end
14
+ end
15
+ def klassify(name)
16
+ name.capitalize
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/eyeofsatoshi/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'eyeofsatoshi'
7
+ spec.version = Eyeofsatoshi::VERSION
8
+ spec.authors = ['Will Binns']
9
+ spec.email = ['hello@willbinns.org']
10
+ spec.add_development_dependency 'rspec', '~> 3.2'
11
+
12
+ spec.summary =
13
+ 'Pulls the current bitcoin price from multiple cryptocurrency APIs. '
14
+ spec.description =
15
+ "Eye of Satoshi pulls the current bitcoin price from multiple cryptocurrency APIs. Ensure your app is getting the correct price by weighting against multiple sources of truth to ensure you and/or your users don't get rekt by incorrect information."
16
+ spec.homepage = 'https://github.com/wbnns/eyeofsatoshi'
17
+ spec.license = 'MIT'
18
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
19
+
20
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
21
+
22
+ spec.metadata['homepage_uri'] = spec.homepage
23
+ spec.metadata['source_code_uri'] = 'https://github.com/wbnns/eyeofsatoshi'
24
+ spec.metadata['changelog_uri'] =
25
+ 'https://github.com/wbnns/eyeofsatoshi/blob/main/CHANGELOG.md'
26
+
27
+ # Specify which files should be added to the gem when it is released.
28
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
29
+ spec.files =
30
+ Dir.chdir(File.expand_path(__dir__)) do
31
+ `git ls-files -z`.split("\x0").reject do |f|
32
+ f.match(%r{\A(?:test|spec|features)/})
33
+ end
34
+ end
35
+ spec.bindir = 'exe'
36
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
37
+ spec.require_paths = ['lib']
38
+
39
+ # Uncomment to register a new dependency of your gem
40
+ spec.add_dependency 'httparty'
41
+
42
+ # For more information and examples about making a new gem, checkout our
43
+ # guide at: https://bundler.io/guides/creating_gem.html
44
+ end
data/lib/coinbase.rb ADDED
@@ -0,0 +1,16 @@
1
+ module Eyeofsatoshi
2
+ class Coinbase < Base
3
+ def request
4
+ super(:get, url)
5
+ end
6
+
7
+ def parsed_response(response)
8
+ response.dig('data', 'amount').to_f
9
+ end
10
+
11
+ def url
12
+ pair = @options.fetch(:pair, 'usd')
13
+ "https://api.coinbase.com/v2/prices/#{@options[:symbol]}-#{pair}/spot"
14
+ end
15
+ end
16
+ end
data/lib/coincap.rb ADDED
@@ -0,0 +1,15 @@
1
+ module Eyeofsatoshi
2
+ class Coincap < Base
3
+ def request
4
+ super(:get, url)
5
+ end
6
+
7
+ def parsed_response(response)
8
+ response.dig('data', 'priceUsd').to_f
9
+ end
10
+
11
+ def url
12
+ "https://api.coincap.io/v2/assets/#{options[:name]}"
13
+ end
14
+ end
15
+ end
data/lib/coingecko.rb ADDED
@@ -0,0 +1,15 @@
1
+ module Eyeofsatoshi
2
+ class Coingecko < Base
3
+ def request
4
+ super(:get, url)
5
+ end
6
+
7
+ def parsed_response(response)
8
+ response.dig('tickers').first.dig('last').to_f
9
+ end
10
+
11
+ def url
12
+ "https://api.coingecko.com/api/v3/coins/#{options[:name]}"
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,16 @@
1
+ module Eyeofsatoshi
2
+ class Coinpaprika < Base
3
+ def request
4
+ super(:get, url)
5
+ end
6
+
7
+ def parsed_response(response)
8
+ response.first.dig('close').to_f
9
+ end
10
+
11
+ def url
12
+ pair = @options.fetch(:pair, 'usd')
13
+ "https://api.coinpaprika.com/v1/coins/#{options[:symbol]}-#{options[:name]}/ohlcv/today"
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,15 @@
1
+ module Eyeofsatoshi
2
+ class Cryptocompare < Base
3
+ def request
4
+ super(:get, url)
5
+ end
6
+
7
+ def parsed_response(response)
8
+ response.dig('USD').to_f
9
+ end
10
+
11
+ def url
12
+ "https://min-api.cryptocompare.com/data/price?fsym=#{options[:symbol]}&tsyms=USD"
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'httparty'
4
+ require_relative "eyeofsatoshi/version"
5
+
6
+ module Eyeofsatoshi
7
+ class Error < StandardError; end
8
+ class Base
9
+ attr_accessor :options
10
+
11
+ def initialize(options)
12
+ @options = options
13
+ end
14
+ def request(type, url, opts = {})
15
+ HTTParty
16
+ .send(type, url, opts)
17
+ .yield_self { |response| parsed_response(response) }
18
+ end
19
+
20
+ def parsed_response(response)
21
+ "#{__method__}"
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eyeofsatoshi
4
+ VERSION = "0.1.0"
5
+ end
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: eyeofsatoshi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Will Binns
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-03-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.2'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: httparty
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Eye of Satoshi pulls the current bitcoin price from multiple cryptocurrency
42
+ APIs. Ensure your app is getting the correct price by weighting against multiple
43
+ sources of truth to ensure you and/or your users don't get rekt by incorrect information.
44
+ email:
45
+ - hello@willbinns.org
46
+ executables: []
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - ".github/workflows/main.yml"
51
+ - ".gitignore"
52
+ - ".rubocop.yml"
53
+ - CHANGELOG.md
54
+ - CODE_OF_CONDUCT.md
55
+ - Gemfile
56
+ - Gemfile.lock
57
+ - LICENSE.txt
58
+ - README.md
59
+ - Rakefile
60
+ - bin/console
61
+ - bin/setup
62
+ - examples/wrapper.rb
63
+ - eyeofsatoshi.gemspec
64
+ - lib/coinbase.rb
65
+ - lib/coincap.rb
66
+ - lib/coingecko.rb
67
+ - lib/coinpaprika.rb
68
+ - lib/cryptocompare.rb
69
+ - lib/eyeofsatoshi.rb
70
+ - lib/eyeofsatoshi/version.rb
71
+ homepage: https://github.com/wbnns/eyeofsatoshi
72
+ licenses:
73
+ - MIT
74
+ metadata:
75
+ allowed_push_host: https://rubygems.org
76
+ homepage_uri: https://github.com/wbnns/eyeofsatoshi
77
+ source_code_uri: https://github.com/wbnns/eyeofsatoshi
78
+ changelog_uri: https://github.com/wbnns/eyeofsatoshi/blob/main/CHANGELOG.md
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: 2.4.0
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubygems_version: 3.2.3
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: Pulls the current bitcoin price from multiple cryptocurrency APIs.
98
+ test_files: []