bitprice 0.1.2 → 0.1.3
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.lock +5 -18
- data/lib/bitprice/cli.rb +1 -1
- data/lib/bitprice/version.rb +1 -1
- metadata +2 -4
- data/bitprice-0.1.0.gem +0 -0
- data/bitprice-0.1.1.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb010f1ecf333bcc885e5f21f7d39cf6736bc8a4
|
4
|
+
data.tar.gz: f43a45cdf41599d39986df9701d8a41f8597b303
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df6f4aab8c5b3204d4618d60de38c1d6d2e29199b0058922f112a7a36cbf9e4f0bbfbbeb9cc795ce77ad4153846a6550aca86922d9308bec820cd977f9d815fc
|
7
|
+
data.tar.gz: f3429ac9f89151132dbd7f4026cd2a7ace9a295afd3ce4370cd4dd1b7592ea6400a9cba9f8dda210843882ce5e340c12642eb441d139af036fe90f807c087198
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
bitprice (0.1.
|
4
|
+
bitprice (0.1.2)
|
5
5
|
nokogiri
|
6
6
|
|
7
7
|
GEM
|
@@ -9,7 +9,6 @@ GEM
|
|
9
9
|
specs:
|
10
10
|
coderay (1.1.2)
|
11
11
|
colorize (0.8.1)
|
12
|
-
diff-lcs (1.3)
|
13
12
|
method_source (0.9.0)
|
14
13
|
mini_portile2 (2.3.0)
|
15
14
|
nokogiri (1.8.1)
|
@@ -20,19 +19,7 @@ GEM
|
|
20
19
|
coderay (~> 1.1.0)
|
21
20
|
method_source (~> 0.9.0)
|
22
21
|
rake (10.5.0)
|
23
|
-
rspec (
|
24
|
-
rspec-core (~> 3.7.0)
|
25
|
-
rspec-expectations (~> 3.7.0)
|
26
|
-
rspec-mocks (~> 3.7.0)
|
27
|
-
rspec-core (3.7.0)
|
28
|
-
rspec-support (~> 3.7.0)
|
29
|
-
rspec-expectations (3.7.0)
|
30
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
-
rspec-support (~> 3.7.0)
|
32
|
-
rspec-mocks (3.7.0)
|
33
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
-
rspec-support (~> 3.7.0)
|
35
|
-
rspec-support (3.7.0)
|
22
|
+
rspec (0.9.4)
|
36
23
|
|
37
24
|
PLATFORMS
|
38
25
|
ruby
|
@@ -41,10 +28,10 @@ PLATFORMS
|
|
41
28
|
DEPENDENCIES
|
42
29
|
bitprice!
|
43
30
|
bundler (~> 1.16)
|
44
|
-
colorize
|
45
|
-
pry
|
31
|
+
colorize (~> 0)
|
32
|
+
pry (~> 0)
|
46
33
|
rake (~> 10.0)
|
47
|
-
rspec
|
34
|
+
rspec (~> 0)
|
48
35
|
|
49
36
|
BUNDLED WITH
|
50
37
|
1.16.0
|
data/lib/bitprice/cli.rb
CHANGED
@@ -41,7 +41,7 @@ class Bitprice::CLI
|
|
41
41
|
input = gets.strip.downcase
|
42
42
|
|
43
43
|
if input.to_i > 0
|
44
|
-
info = @listing[input.to_i]
|
44
|
+
info = @listing[input.to_i-1]
|
45
45
|
puts " "
|
46
46
|
puts "----- " + "#{info.name}".colorize(:cyan) + " -----"
|
47
47
|
puts "-Ticker Name:".colorize(:magenta) + " #{info.ticker}"
|
data/lib/bitprice/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bitprice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "'Micah Ortega'"
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-12-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -112,8 +112,6 @@ files:
|
|
112
112
|
- bin/bitprice
|
113
113
|
- bin/console
|
114
114
|
- bin/setup
|
115
|
-
- bitprice-0.1.0.gem
|
116
|
-
- bitprice-0.1.1.gem
|
117
115
|
- bitprice.gemspec
|
118
116
|
- lib/bitprice.rb
|
119
117
|
- lib/bitprice/cli.rb
|
data/bitprice-0.1.0.gem
DELETED
Binary file
|
data/bitprice-0.1.1.gem
DELETED
Binary file
|