crypto_price 0.1.4 → 0.1.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d3a36b6a2c013e374345042eed9be9d11c615e5373b3a0af01fc0de7f244457e
4
- data.tar.gz: 1aae2f4f784bb1ff2439d358c621e41abb852439ba893862ff659f9d8bc25015
3
+ metadata.gz: d167f731e973e525b03620e38cf2332dca07065397af7b8449fd7215b3423f2b
4
+ data.tar.gz: 5da0c34224e7454ab89c9b14cd404d49f645c4ff08f1e14a8e891fde9b80e471
5
5
  SHA512:
6
- metadata.gz: 1b8c0fe8bddbd8b417489be25a57e554b0d6d67843b414a166d71407f7c41e4d3c2c52581575119ef3b470134a177a7c0c195bec9fdc4f48accdd32ba0c328ca
7
- data.tar.gz: d81ec664849b6534f83ebb4934c456bdc4a64c9c7af6d1b4699cb9ac527ad45bc11565bd2c7d79282413e8fbcb48d0ecbe31a53992a3993bd835026d7ce6fe61
6
+ metadata.gz: 904a00f8f1ec0bb14534f8eeca8eeab5a8d811d665356d0dc0c043eb6e1d4301f70fd83cd0adc6e61c69a5d804896dbea9ead4c1c7619d386db477103acbfc8c
7
+ data.tar.gz: ca407aadb266df96046c24d3ad50faa3541c50d0af1a0f54a9381673f54acf4bc2fc4c001415b4b509c96de3702d1941dd1c69dc0bbc2d0b26386c03ed4730d1
data/Gemfile.lock ADDED
@@ -0,0 +1,45 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ crypto_price (0.1.5)
5
+ bundler (~> 2.0)
6
+ nokogiri
7
+ pry
8
+ rake (~> 13.0)
9
+ rspec (~> 3.0)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ coderay (1.1.2)
15
+ diff-lcs (1.3)
16
+ method_source (1.0.0)
17
+ mini_portile2 (2.4.0)
18
+ nokogiri (1.10.9)
19
+ mini_portile2 (~> 2.4.0)
20
+ pry (0.13.1)
21
+ coderay (~> 1.1)
22
+ method_source (~> 1.0)
23
+ rake (13.0.1)
24
+ rspec (3.9.0)
25
+ rspec-core (~> 3.9.0)
26
+ rspec-expectations (~> 3.9.0)
27
+ rspec-mocks (~> 3.9.0)
28
+ rspec-core (3.9.2)
29
+ rspec-support (~> 3.9.3)
30
+ rspec-expectations (3.9.2)
31
+ diff-lcs (>= 1.2.0, < 2.0)
32
+ rspec-support (~> 3.9.0)
33
+ rspec-mocks (3.9.1)
34
+ diff-lcs (>= 1.2.0, < 2.0)
35
+ rspec-support (~> 3.9.0)
36
+ rspec-support (3.9.3)
37
+
38
+ PLATFORMS
39
+ ruby
40
+
41
+ DEPENDENCIES
42
+ crypto_price!
43
+
44
+ BUNDLED WITH
45
+ 2.1.4
data/README.md CHANGED
@@ -41,3 +41,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
41
41
  ## Code of Conduct
42
42
 
43
43
  Everyone interacting in the CryptoPrice project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/FigueroaR/crypto_price/blob/master/CODE_OF_CONDUCT.md).
44
+
data/bin/crypto_price CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
 
4
- #require "bundler/setup"
4
+ require "bundler/setup"
5
5
  #require "./lib/crypto_price"
6
6
  require_relative "../lib/crypto_price"
7
7
 
data/crypto_price.gemspec CHANGED
@@ -7,14 +7,13 @@ Gem::Specification.new do |spec|
7
7
  spec.name = "crypto_price"
8
8
  spec.version = CryptoPrice::VERSION
9
9
  spec.authors = ["Raul Figueroa"]
10
- spec.email = ["raul.a.figueroa@hotmail.com"]
10
+ spec.email = ["raul.a.figueroaa@gmail.com"]
11
11
 
12
- spec.summary = %q{View Current Crypto Price.}
13
- spec.description = %q{Scrapped Information on Crypto Price.}
12
+ spec.summary = %q{View current Crypto prices on demand.}
13
+ spec.description = %q{Scrapped Information on Crypto Prices.}
14
14
  spec.homepage = "https://github.com/FigueroaR/crypto_price"
15
15
  spec.license = "MIT"
16
16
 
17
-
18
17
  # Specify which files should be added to the gem when it is released.
19
18
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
20
19
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
@@ -24,10 +23,10 @@ Gem::Specification.new do |spec|
24
23
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
24
  spec.require_paths = ["lib"]
26
25
 
27
- spec.add_development_dependency "bundler", "~> 2.0"
28
- spec.add_development_dependency "rake", "~> 10.0"
29
- spec.add_development_dependency "rspec", "~> 3.0"
30
- spec.add_development_dependency "pry"
26
+ spec.add_dependency "bundler", "~> 2.0"
27
+ spec.add_dependency "rake", "~> 13.0"
28
+ spec.add_dependency "rspec", "~> 3.0"
29
+ spec.add_dependency "pry"
31
30
 
32
31
  spec.add_dependency "nokogiri"
33
32
  end
@@ -7,56 +7,67 @@ class CryptoPrice::CLI
7
7
  end
8
8
 
9
9
  def menu
10
- puts "| ================================ |"
11
- puts "| Current Crypto-Currencies Prices |"
12
- puts "| ================================ |"
13
- puts "| |"
10
+ 5.times do
11
+ puts " "
12
+ end
13
+ puts " ================================ "
14
+ puts " Current Crypto-Currencies Prices "
15
+ puts " ================================ "
16
+ puts " "
14
17
  puts "|========================================================================|"
15
18
  puts "| Today's top Crypto! |"
16
19
 
17
20
  input = nil
18
- while input != "exit"
21
+ while input != "x"
19
22
  puts "|========================================================================|"
20
23
  puts "| |"
21
24
  puts "| |"
22
25
  puts "| Choose an option Number: |"
26
+ puts "| |"
27
+ puts "| when done type 'x' |"
23
28
  puts "| ___________________ |"
24
29
  puts "| |"
25
30
  puts "| |"
26
31
  puts "| |"
27
32
  puts "| - 1. Top 10 coins - 2. Top 50 Coins | "
28
33
  puts "| |"
29
- puts "| - 3. exit |"
34
+ puts "| |"
30
35
  puts "| |"
31
36
  puts "|________________________________________________________________________|"
37
+ 3.times do
38
+ puts " "
39
+ end
32
40
 
33
41
  input = gets.strip
34
- CryptoPrice::Scraper.scrape_coinlib
42
+ CryptoPrice::Scraper.scrape_coins
35
43
  case input
36
- when "1"
37
- top_ten(CryptoPrice::Coin.all)
38
- input = gets.strip
39
- c = CryptoPrice::Coin.all[input.to_i]
40
- show_info(input, c)
41
- when "2"
42
- top_fifty(CryptoPrice::Coin.all)
43
- input = gets.strip
44
- d = CryptoPrice::Coin.all[input.to_i]
45
- show_info(input, d)
46
- when "exit"
47
- 5.times do
48
- puts " "
49
- end
50
- puts "Have a good day!"
51
- 5.times do
52
- puts " "
53
- end
54
- else
55
- 5.times do
56
- puts " "
44
+ when "1"
45
+ top_ten(CryptoPrice::Coin.all)
46
+ input = gets.strip
47
+ c = CryptoPrice::Coin.all[input.to_i]
48
+ show_info(input, c)
49
+ when "2"
50
+ top_fifty(CryptoPrice::Coin.all)
51
+ input = gets.strip
52
+ d = CryptoPrice::Coin.all[input.to_i]
53
+ show_info(input, d)
54
+ when "x"
55
+ 5.times do
56
+ puts " "
57
+ end
58
+ puts "Have a good day!"
59
+ 5.times do
60
+ puts " "
57
61
  end
58
- puts "Type 'Exit' when you are done!"
59
- end
62
+ else
63
+ 5.times do
64
+ puts " "
65
+ end
66
+ puts "Type 'x' when you are done!"
67
+ 5.times do
68
+ puts " "
69
+ end
70
+ end
60
71
  end
61
72
  end
62
73
 
@@ -77,15 +88,17 @@ class CryptoPrice::CLI
77
88
  2.times do
78
89
  puts " "
79
90
  end
80
- puts "----------------------------------------------------------------"
81
- puts " You chose: #{index} "
91
+ puts " ----------------------------------------------------------------"
92
+ puts " "
93
+ puts " You chose: #{index} "
82
94
  puts "
83
- Name: #{coin.name}
84
- Currency Symbol: #{coin.symbol}
85
- Current Price: $#{coin.price}
86
- 24h Change: #{coin.change}%
87
- MarketCap: $#{coin.marketcap}"
88
- puts "----------------------------------------------------------------"
95
+ Name: #{coin.name}
96
+ Currency Symbol: #{coin.symbol}
97
+ Current Price: #{coin.price}
98
+ 24h Change: #{coin.change}%
99
+ MarketCap: #{coin.marketcap}"
100
+ puts " "
101
+ puts " ----------------------------------------------------------------"
89
102
  2.times do
90
103
  puts " "
91
104
  end
@@ -1,20 +1,24 @@
1
1
  class CryptoPrice::Scraper
2
- def self.scrape_coinmarketcap
3
- #binding.pry
4
- #doc = Nokogiri::HTML(open("https://coinmarketcap.com"))
5
- #doc.css("tbody.span").text.split("$").select{ |k| k.length > 0 }
6
- doc = Nokogiri::HTML(open("https://coinstats.app/?pagesize=50&page=1"))
7
- doc.css("td.data-cell.mobile-last").text.split("$").select{ |k| k.length > 0 }
8
- end
2
+ # def self.scrape_coinmarketcap
3
+ # binding.pry
4
+ # #doc = Nokogiri::HTML(open("https://coinmarketcap.com"))
5
+ # #doc.css("tbody.span").text.split("$").select{ |k| k.length > 0 }
6
+ # doc = Nokogiri::HTML(open("https://coinstats.app/?pagesize=50&page=1"))
7
+ # doc.css("td.data-cell.mobile-last").text.split("$").select{ |k| k.length > 0 }
8
+ # end
9
+
10
+
9
11
 
10
- def self.scrape_coinlib
11
- doc = Nokogiri::HTML(open("https://coinlib.io/coins"))
12
- prices = self.scrape_coinmarketcap
13
- names = doc.css("div.tbl-currency").text.split("\n").select{ |k| !k.include?("[") && k.length > 0}
14
- symbols = doc.css("span.tbl-coin-abbrev").text.gsub("]", "").split("[").select{|k| k.length > 0}
15
- changes = doc.css("span.tbl-price.pr-change").text.split("%").select{|k| k.length > 0}
16
- marketcaps = doc.css("span.mob-info-value").text.split("$").select{|k| k.length > 0}
12
+ # https://coindataflow.com/en seems to have a well designed fornt end with strcutured html and css
13
+ def self.scrape_coins
17
14
  #binding.pry
15
+ doc = Nokogiri::HTML(open("https://coindataflow.com/en"))
16
+ names = doc.css("tbody tr td[3]").text.gsub(" ", "").split("\n").select{|k| k.length > 0}
17
+ symbols = doc.css("tbody tr td[4]").text.gsub(" ", "").split("\n").select{|k| k.length > 0}
18
+ prices = doc.css("tbody tr td[5]").text.gsub(" ", "").split("\n").select{|k| k.length > 0}
19
+ changes = doc.css("tbody tr td[6]").text.gsub(" ", "").split("\n").select{|k| k.length > 0}
20
+ marketcaps = doc.css("tbody tr td[12]").text.gsub(" ", "").split("\n").select{|k| k.length > 0}
21
+
18
22
  index = 0
19
23
  while index < names.length && index < symbols.length
20
24
  symbol = symbols[index]
@@ -1,3 +1,3 @@
1
1
  module CryptoPrice
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
@@ -1,205 +1,205 @@
1
- => ["4,89020,696",
2
- "195,515,033,716",
3
- "55,012,563,63366.6%",
4
- "195,515,033,716",
5
- "55,012,563,63366.6%4,89020,696Next 100 →View AllWatchlistBitcoin",
6
- "7,206.97",
7
- "15,441,789,029Ethereum",
8
- "145.76",
9
- "6,351,640,297XRP",
10
- "0.214762",
11
- "1,092,294,607Tether",
12
- "1.01",
13
- "17,760,854,963Bitcoin Cash",
14
- "208.53",
15
- "1,174,326,184Litecoin",
16
- "44.69",
17
- "2,641,560,348EOS",
18
- "2.62",
19
- "1,508,246,908Binance Coin",
20
- "15.17",
21
- "223,957,898Bitcoin SV",
22
- "95.42",
23
- "418,406,899Stellar",
24
- "0.055039",
25
- "150,879,933TRON",
26
- "0.014682",
27
- "847,336,382Cardano",
28
- "0.036971",
29
- "36,240,310UNUS SED LEO",
30
- "0.918329",
31
- "6,238,396Monero",
32
- "52.37",
33
- "157,753,890Tezos",
34
- "1.28",
35
- "46,240,844Chainlink",
36
- "2.07",
37
- "116,089,937Huobi Token",
38
- "2.86",
39
- "134,573,384Cosmos",
40
- "3.57",
41
- "151,074,420NEO",
42
- "8.73",
43
- "299,076,783IOTA",
44
- "0.199448",
45
- "7,633,078Maker",
46
- "538.16",
47
- "4,796,181USD Coin",
48
- "1.00",
49
- "219,582,507Dash",
50
- "50.70",
51
- "228,042,517Ethereum Classic",
52
- "3.77",
53
- "450,389,380VeChain",
54
- "0.006864",
55
- "137,816,477Ontology",
56
- "0.595832",
57
- "64,188,439NEM",
58
- "0.035183",
59
- "29,271,796Crypto.com Coin",
60
- "0.025417",
61
- "4,486,483Dogecoin",
62
- "0.002185",
63
- "64,141,094MINDOL",
64
- "1.86",
65
- "3,975,455Basic Attention Token",
66
- "0.189011",
67
- "54,509,179Paxos Standard",
68
- "1.01",
69
- "140,009,307HedgeTrade",
70
- "0.749992",
71
- "340,270Zcash",
72
- "26.85",
73
- "89,877,022Decred",
74
- "18.51",
75
- "7,073,718Synthetix Network Token",
76
- "1.32",
77
- "288,175Qtum",
78
- "1.70",
79
- "240,851,605TrueUSD",
80
- "1.00",
81
- "174,281,181Centrality",
82
- "0.135719",
83
- "436,6660x",
84
- "0.239344",
85
- "13,206,564Ravencoin",
86
- "0.027358",
87
- "53,992,831Algorand",
88
- "0.280549",
89
- "124,609,969Holo",
90
- "0.000762",
91
- "5,944,495Seele",
92
- "0.167107",
93
- "44,281,432Augur",
94
- "10.19",
95
- "7,062,228Nano",
96
- "0.816547",
97
- "2,298,296Bitcoin Gold",
98
- "5.90",
99
- "12,289,900OmiseGO",
100
- "0.724054",
101
- "41,916,628V Systems",
102
- "0.051504",
103
- "2,292,127ABBC Coin",
104
- "0.163714",
105
- "44,452,273ZB",
106
- "0.190906",
107
- "209,407,414DigiByte",
108
- "0.006552",
109
- "1,110,204EDUCare",
110
- "0.081191",
111
- "4,361,495FTX Token",
112
- "1.55",
113
- "6,783,416Lisk",
114
- "0.659267",
115
- "760,856Komodo",
116
- "0.668139",
117
- "6,083,055KuCoin Shares",
118
- "0.950081",
119
- "5,101,921Bytom",
120
- "0.076421",
121
- "10,803,568LUNA",
122
- "0.254155",
123
- "606,405Matic Network",
124
- "0.028216",
125
- "64,139,781Swipe",
126
- "1.14",
127
- "13,234,527Bitcoin Diamond",
128
- "0.365136",
129
- "3,809,868IOST",
130
- "0.005618",
131
- "36,832,398Molecular Future",
132
- "1.50",
133
- "33,616,998ICON",
134
- "0.129158",
135
- "3,669,185Siacoin",
136
- "0.001564",
137
- "1,819,772THETA",
138
- "0.074167",
139
- "1,141,840BitTorrent",
140
- "0.000302",
141
- "51,965,636Quant",
142
- "5.21",
143
- "3,142,173Verge",
144
- "0.003857",
145
- "2,002,339Bytecoin",
146
- "0.000334",
147
- "7,140MCO",
148
- "3.88",
149
- "11,260,032Single Collateral DAI ",
150
- "1.01",
151
- "2,141,853MonaCoin",
152
- "0.891306",
153
- "520,067Waves",
154
- "0.573810",
155
- "9,882,544BitShares",
156
- "0.019978",
157
- "1,737,698MaidSafeCoin",
158
- "0.117609",
159
- "272,741Zilliqa",
160
- "0.005459",
161
- "11,998,841HyperCash",
162
- "1.18",
163
- "1,995,335Nexo",
164
- "0.090813",
165
- "8,363,547Ardor",
166
- "0.048754",
167
- "2,063,010DxChain Token",
168
- "0.000951",
169
- "1,389,250Enjin Coin",
170
- "0.059336",
171
- "44,238,445Aeternity",
172
- "0.154796",
173
- "28,736,792iExec RLC",
174
- "0.522981",
175
- "1,434,115Steem",
176
- "0.118285",
177
- "533,992Chiliz",
178
- "0.010834",
179
- "3,193,866Horizen",
180
- "5.02",
181
- "582,090SOLVE",
182
- "0.118562",
183
- "578,671Fetch.ai",
184
- "0.057858",
185
- "22,038,690Status",
186
- "0.010885",
187
- "180,840,302Pundi X",
188
- "0.000157",
189
- "1,181,730Electroneum",
190
- "0.003725",
191
- "120,473Digitex Futures",
192
- "0.046347",
193
- "1,340,320Golem",
194
- "0.036710",
195
- "2,096,791Silverway",
196
- "0.352451",
197
- "2,197,267DigixDAO",
198
- "17.54",
199
- "1,136,967STASIS EURO",
200
- "1.09",
201
- "750,921Crypterium",
202
- "0.410582",
203
- "264,220ILCoin",
204
- "0.100635",
205
- "675,626Next 100 →View AllAdvertiseBlockchain ExplorerCrypto APICrypto IndicesDisclaimerPrivacyTermsFAQMethodologyRequest FormCareersBlogNewsletterShopFacebookTwitterTelegramInteractive Chat3CMCRgEm8HVz3DrWaCCid3vAANE42jcEv9LTdsVS8VDw6syvfQADdhf2PHAm3rMGJvPX0x0074709077B8AE5a245E4ED161C971Dc4c3C8E2B1LVXG4Z4oF6TrJfmUfSuLX8nqb8c5eCwha"]
1
+ => ["4,89020,696",
2
+ "195,515,033,716",
3
+ "55,012,563,63366.6%",
4
+ "195,515,033,716",
5
+ "55,012,563,63366.6%4,89020,696Next 100 →View AllWatchlistBitcoin",
6
+ "7,206.97",
7
+ "15,441,789,029Ethereum",
8
+ "145.76",
9
+ "6,351,640,297XRP",
10
+ "0.214762",
11
+ "1,092,294,607Tether",
12
+ "1.01",
13
+ "17,760,854,963Bitcoin Cash",
14
+ "208.53",
15
+ "1,174,326,184Litecoin",
16
+ "44.69",
17
+ "2,641,560,348EOS",
18
+ "2.62",
19
+ "1,508,246,908Binance Coin",
20
+ "15.17",
21
+ "223,957,898Bitcoin SV",
22
+ "95.42",
23
+ "418,406,899Stellar",
24
+ "0.055039",
25
+ "150,879,933TRON",
26
+ "0.014682",
27
+ "847,336,382Cardano",
28
+ "0.036971",
29
+ "36,240,310UNUS SED LEO",
30
+ "0.918329",
31
+ "6,238,396Monero",
32
+ "52.37",
33
+ "157,753,890Tezos",
34
+ "1.28",
35
+ "46,240,844Chainlink",
36
+ "2.07",
37
+ "116,089,937Huobi Token",
38
+ "2.86",
39
+ "134,573,384Cosmos",
40
+ "3.57",
41
+ "151,074,420NEO",
42
+ "8.73",
43
+ "299,076,783IOTA",
44
+ "0.199448",
45
+ "7,633,078Maker",
46
+ "538.16",
47
+ "4,796,181USD Coin",
48
+ "1.00",
49
+ "219,582,507Dash",
50
+ "50.70",
51
+ "228,042,517Ethereum Classic",
52
+ "3.77",
53
+ "450,389,380VeChain",
54
+ "0.006864",
55
+ "137,816,477Ontology",
56
+ "0.595832",
57
+ "64,188,439NEM",
58
+ "0.035183",
59
+ "29,271,796Crypto.com Coin",
60
+ "0.025417",
61
+ "4,486,483Dogecoin",
62
+ "0.002185",
63
+ "64,141,094MINDOL",
64
+ "1.86",
65
+ "3,975,455Basic Attention Token",
66
+ "0.189011",
67
+ "54,509,179Paxos Standard",
68
+ "1.01",
69
+ "140,009,307HedgeTrade",
70
+ "0.749992",
71
+ "340,270Zcash",
72
+ "26.85",
73
+ "89,877,022Decred",
74
+ "18.51",
75
+ "7,073,718Synthetix Network Token",
76
+ "1.32",
77
+ "288,175Qtum",
78
+ "1.70",
79
+ "240,851,605TrueUSD",
80
+ "1.00",
81
+ "174,281,181Centrality",
82
+ "0.135719",
83
+ "436,6660x",
84
+ "0.239344",
85
+ "13,206,564Ravencoin",
86
+ "0.027358",
87
+ "53,992,831Algorand",
88
+ "0.280549",
89
+ "124,609,969Holo",
90
+ "0.000762",
91
+ "5,944,495Seele",
92
+ "0.167107",
93
+ "44,281,432Augur",
94
+ "10.19",
95
+ "7,062,228Nano",
96
+ "0.816547",
97
+ "2,298,296Bitcoin Gold",
98
+ "5.90",
99
+ "12,289,900OmiseGO",
100
+ "0.724054",
101
+ "41,916,628V Systems",
102
+ "0.051504",
103
+ "2,292,127ABBC Coin",
104
+ "0.163714",
105
+ "44,452,273ZB",
106
+ "0.190906",
107
+ "209,407,414DigiByte",
108
+ "0.006552",
109
+ "1,110,204EDUCare",
110
+ "0.081191",
111
+ "4,361,495FTX Token",
112
+ "1.55",
113
+ "6,783,416Lisk",
114
+ "0.659267",
115
+ "760,856Komodo",
116
+ "0.668139",
117
+ "6,083,055KuCoin Shares",
118
+ "0.950081",
119
+ "5,101,921Bytom",
120
+ "0.076421",
121
+ "10,803,568LUNA",
122
+ "0.254155",
123
+ "606,405Matic Network",
124
+ "0.028216",
125
+ "64,139,781Swipe",
126
+ "1.14",
127
+ "13,234,527Bitcoin Diamond",
128
+ "0.365136",
129
+ "3,809,868IOST",
130
+ "0.005618",
131
+ "36,832,398Molecular Future",
132
+ "1.50",
133
+ "33,616,998ICON",
134
+ "0.129158",
135
+ "3,669,185Siacoin",
136
+ "0.001564",
137
+ "1,819,772THETA",
138
+ "0.074167",
139
+ "1,141,840BitTorrent",
140
+ "0.000302",
141
+ "51,965,636Quant",
142
+ "5.21",
143
+ "3,142,173Verge",
144
+ "0.003857",
145
+ "2,002,339Bytecoin",
146
+ "0.000334",
147
+ "7,140MCO",
148
+ "3.88",
149
+ "11,260,032Single Collateral DAI ",
150
+ "1.01",
151
+ "2,141,853MonaCoin",
152
+ "0.891306",
153
+ "520,067Waves",
154
+ "0.573810",
155
+ "9,882,544BitShares",
156
+ "0.019978",
157
+ "1,737,698MaidSafeCoin",
158
+ "0.117609",
159
+ "272,741Zilliqa",
160
+ "0.005459",
161
+ "11,998,841HyperCash",
162
+ "1.18",
163
+ "1,995,335Nexo",
164
+ "0.090813",
165
+ "8,363,547Ardor",
166
+ "0.048754",
167
+ "2,063,010DxChain Token",
168
+ "0.000951",
169
+ "1,389,250Enjin Coin",
170
+ "0.059336",
171
+ "44,238,445Aeternity",
172
+ "0.154796",
173
+ "28,736,792iExec RLC",
174
+ "0.522981",
175
+ "1,434,115Steem",
176
+ "0.118285",
177
+ "533,992Chiliz",
178
+ "0.010834",
179
+ "3,193,866Horizen",
180
+ "5.02",
181
+ "582,090SOLVE",
182
+ "0.118562",
183
+ "578,671Fetch.ai",
184
+ "0.057858",
185
+ "22,038,690Status",
186
+ "0.010885",
187
+ "180,840,302Pundi X",
188
+ "0.000157",
189
+ "1,181,730Electroneum",
190
+ "0.003725",
191
+ "120,473Digitex Futures",
192
+ "0.046347",
193
+ "1,340,320Golem",
194
+ "0.036710",
195
+ "2,096,791Silverway",
196
+ "0.352451",
197
+ "2,197,267DigixDAO",
198
+ "17.54",
199
+ "1,136,967STASIS EURO",
200
+ "1.09",
201
+ "750,921Crypterium",
202
+ "0.410582",
203
+ "264,220ILCoin",
204
+ "0.100635",
205
+ "675,626Next 100 →View AllAdvertiseBlockchain ExplorerCrypto APICrypto IndicesDisclaimerPrivacyTermsFAQMethodologyRequest FormCareersBlogNewsletterShopFacebookTwitterTelegramInteractive Chat3CMCRgEm8HVz3DrWaCCid3vAANE42jcEv9LTdsVS8VDw6syvfQADdhf2PHAm3rMGJvPX0x0074709077B8AE5a245E4ED161C971Dc4c3C8E2B1LVXG4Z4oF6TrJfmUfSuLX8nqb8c5eCwha"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crypto_price
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Raul Figueroa
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-12-06 00:00:00.000000000 Z
11
+ date: 2020-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -17,7 +17,7 @@ dependencies:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '2.0'
20
- type: :development
20
+ type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '10.0'
34
- type: :development
33
+ version: '13.0'
34
+ type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '10.0'
40
+ version: '13.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -45,7 +45,7 @@ dependencies:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '3.0'
48
- type: :development
48
+ type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
@@ -59,7 +59,7 @@ dependencies:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
- type: :development
62
+ type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
@@ -80,9 +80,9 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- description: Scrapped Information on Crypto Price.
83
+ description: Scrapped Information on Crypto Prices.
84
84
  email:
85
- - raul.a.figueroa@hotmail.com
85
+ - raul.a.figueroaa@gmail.com
86
86
  executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []
@@ -92,6 +92,7 @@ files:
92
92
  - ".travis.yml"
93
93
  - CODE_OF_CONDUCT.md
94
94
  - Gemfile
95
+ - Gemfile.lock
95
96
  - LICENSE.txt
96
97
  - README.md
97
98
  - Rakefile
@@ -128,8 +129,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
128
129
  - !ruby/object:Gem::Version
129
130
  version: '0'
130
131
  requirements: []
131
- rubygems_version: 3.0.6
132
+ rubygems_version: 3.1.2
132
133
  signing_key:
133
134
  specification_version: 4
134
- summary: View Current Crypto Price.
135
+ summary: View current Crypto prices on demand.
135
136
  test_files: []