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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 70fb441b1b1f83090154a54e01c76661dd31c42c1d2668fb41118eadbe18a833
4
- data.tar.gz: c2f99743bc498c81d4878c92b8a6a7d8d22c26a320a608c849cc3a30965035de
3
+ metadata.gz: d8de590858e339e955ba028a13123ca2175c039945915c07f059e40e7200278a
4
+ data.tar.gz: 5f0089e3033e48055cf0fd0709b1d42f8d550610586a7ef259a7d631c990cf15
5
5
  SHA512:
6
- metadata.gz: 856fa827317f7cc4ad29c09985961e9571acf32ee710b871bd2d4d364187e513d14592540e7f08639dfbba3fbbf8bdfbd2bc716fac692090997e60eadfede7b8
7
- data.tar.gz: 7d45f0df3e0d2a0b99120e9dc433eb102f8f3bc7766e8463651b600a7bc884d090d30f331d5b0723822c50c2c3de46006b8e931768f2388b5dc10af75ccdbaf8
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
- LiquerY (0.1.0)
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.0)
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 = "exe"
36
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
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
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require_relative "../config/environment"
5
+
6
+ LiquerY::CLI.new.call
@@ -1,3 +1,3 @@
1
1
  module LiquerY
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
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.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Johnson
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2019-01-17 00:00:00.000000000 Z
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