liquery 0.1.0 → 0.2.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 +4 -4
- data/Gemfile.lock +3 -3
- data/LiquerY.gemspec +2 -2
- data/bin/liquery +6 -0
- data/lib/LiquerY/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8de590858e339e955ba028a13123ca2175c039945915c07f059e40e7200278a
|
4
|
+
data.tar.gz: 5f0089e3033e48055cf0fd0709b1d42f8d550610586a7ef259a7d631c990cf15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48a6ccbf84b6e13e3aa59627bed0c00eab904a048355b38e1cf84681a55204438cbe73b7087b900bd96fcc0aaae646544d2ebdf2593ea6ddc657d04b3cd3f6f8
|
7
|
+
data.tar.gz: d491f996bc8e7f90ad9a8604844db8816da21ad4a0e64fa9bf9ebbb4a5fe7abf739d4f73499a0cc3ee40f5660eccaa1bd5332574e8f8e5b0d96269284513dad3
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
|
4
|
+
liquery (0.2.0)
|
5
5
|
colorize
|
6
6
|
fuzzy_match
|
7
7
|
tty-spinner
|
@@ -31,7 +31,7 @@ GEM
|
|
31
31
|
diff-lcs (>= 1.2.0, < 2.0)
|
32
32
|
rspec-support (~> 3.8.0)
|
33
33
|
rspec-support (3.8.0)
|
34
|
-
tty-cursor (0.6.
|
34
|
+
tty-cursor (0.6.1)
|
35
35
|
tty-spinner (0.9.0)
|
36
36
|
tty-cursor (~> 0.6.0)
|
37
37
|
|
@@ -39,8 +39,8 @@ PLATFORMS
|
|
39
39
|
ruby
|
40
40
|
|
41
41
|
DEPENDENCIES
|
42
|
-
LiquerY!
|
43
42
|
bundler (~> 1.17)
|
43
|
+
liquery!
|
44
44
|
pry
|
45
45
|
rake (~> 10.0)
|
46
46
|
rspec (~> 3.0)
|
data/LiquerY.gemspec
CHANGED
@@ -32,8 +32,8 @@ Gem::Specification.new do |spec|
|
|
32
32
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
33
33
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
34
34
|
end
|
35
|
-
spec.bindir = "
|
36
|
-
spec.executables =
|
35
|
+
spec.bindir = "bin"
|
36
|
+
spec.executables = ['liquery']
|
37
37
|
spec.require_paths = ["lib"]
|
38
38
|
|
39
39
|
spec.add_development_dependency "bundler", "~> 1.17"
|
data/bin/liquery
ADDED
data/lib/LiquerY/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: liquery
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Johnson
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -111,7 +111,8 @@ dependencies:
|
|
111
111
|
description: App to offer drink recommendations for users
|
112
112
|
email:
|
113
113
|
- ajohnson.uva@gmail.com
|
114
|
-
executables:
|
114
|
+
executables:
|
115
|
+
- liquery
|
115
116
|
extensions: []
|
116
117
|
extra_rdoc_files: []
|
117
118
|
files:
|
@@ -128,6 +129,7 @@ files:
|
|
128
129
|
- Rakefile
|
129
130
|
- bin/LiquerY
|
130
131
|
- bin/console
|
132
|
+
- bin/liquery
|
131
133
|
- bin/setup
|
132
134
|
- config/environment.rb
|
133
135
|
- lib/LiquerY.rb
|