just-the-recipe 0.5.0 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/just-the-recipe.rb +7 -6
- data/lib/{authenticate.rb → just-the-recipe/authenticate.rb} +1 -2
- data/lib/just-the-recipe/cli.rb +0 -2
- data/lib/just-the-recipe/cookbook.rb +0 -3
- data/lib/just-the-recipe/recipe.rb +0 -3
- data/lib/just-the-recipe/scraper.rb +0 -4
- data/lib/just-the-recipe/searcher.rb +0 -4
- data/lib/just-the-recipe/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5e5d785b9d4caee2c89b820b4c55ffba121faa8e9e29e102f64853b93c4393c
|
4
|
+
data.tar.gz: 9566583256c79a23233124ac46b98d1244fe63ff65a9d4f96fd9225737286614
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cfac5672ee5c703ed2e4a92ef0f2e08caa98a67e882cf2a6867fcbe8697b89fca2d533680f38edf2c57a05495017ddd77ffced1d4ed3e4dc01ca9a82bffca284
|
7
|
+
data.tar.gz: 57ba38dc9b48f3b7848f80c708d678f46334dfde5f9a9bc1e03a9691e05572d56bb44eac65c94b92d825fd12bfed56b83cde44333d8ebf1deff1b1a13ebc7997
|
data/Gemfile.lock
CHANGED
data/lib/just-the-recipe.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
|
1
2
|
require 'dotenv/load'
|
2
3
|
require 'open-uri'
|
3
4
|
require 'nokogiri'
|
@@ -5,11 +6,11 @@ require 'JSON'
|
|
5
6
|
require 'net/http'
|
6
7
|
require 'tty-prompt'
|
7
8
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
9
|
+
require_relative 'just-the-recipe/version'
|
10
|
+
require_relative 'just-the-recipe/cli'
|
11
|
+
require_relative 'just-the-recipe/cookbook'
|
12
|
+
require_relative 'just-the-recipe/recipe'
|
13
|
+
require_relative 'just-the-recipe/scraper'
|
14
|
+
require_relative 'just-the-recipe/searcher'
|
14
15
|
|
15
16
|
|
data/lib/just-the-recipe/cli.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: just-the-recipe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- George Dilthey
|
@@ -86,8 +86,8 @@ files:
|
|
86
86
|
- bin/just-the-recipe
|
87
87
|
- bin/setup
|
88
88
|
- just-the-recipe.gemspec
|
89
|
-
- lib/authenticate.rb
|
90
89
|
- lib/just-the-recipe.rb
|
90
|
+
- lib/just-the-recipe/authenticate.rb
|
91
91
|
- lib/just-the-recipe/cli.rb
|
92
92
|
- lib/just-the-recipe/cookbook.rb
|
93
93
|
- lib/just-the-recipe/recipe.rb
|