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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa0b761e655e7b5c4f78daaad4d29dff143b0f7a9ef1ecdbff52265616aa00ed
4
- data.tar.gz: 938a1bc8e272ea6440d7a9d0618ce2c80d69de009c65d04a5e52a297f00770db
3
+ metadata.gz: c5e5d785b9d4caee2c89b820b4c55ffba121faa8e9e29e102f64853b93c4393c
4
+ data.tar.gz: 9566583256c79a23233124ac46b98d1244fe63ff65a9d4f96fd9225737286614
5
5
  SHA512:
6
- metadata.gz: a2e057b7e53e44c04445565925229cb09470acb6e096de81ecd8bc41085d745271a8ef03c857afc413a387d713eafec244b49bd3a63eed1f9d9d53df9f98a35d
7
- data.tar.gz: 49d1cf7a8a2b31639d21fd0c65d70b16a70559b0d689911d058855eb774d18006cf05cfbc17ba0fea7a3e937d9e392875d22faa6af51975be45b67e6080719dd
6
+ metadata.gz: cfac5672ee5c703ed2e4a92ef0f2e08caa98a67e882cf2a6867fcbe8697b89fca2d533680f38edf2c57a05495017ddd77ffced1d4ed3e4dc01ca9a82bffca284
7
+ data.tar.gz: 57ba38dc9b48f3b7848f80c708d678f46334dfde5f9a9bc1e03a9691e05572d56bb44eac65c94b92d825fd12bfed56b83cde44333d8ebf1deff1b1a13ebc7997
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- just-the-recipe (0.5.0)
4
+ just-the-recipe (0.10.0)
5
5
  dotenv
6
6
  nokogiri
7
7
  open-uri
@@ -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
- require './lib/just-the-recipe/version.rb'
9
- require './lib/just-the-recipe/cli.rb'
10
- require './lib/just-the-recipe/cookbook.rb'
11
- require './lib/just-the-recipe/recipe.rb'
12
- require './lib/just-the-recipe/scraper.rb'
13
- require './lib/just-the-recipe/searcher.rb'
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
 
@@ -1,5 +1,4 @@
1
-
2
- class Authenticate
1
+ class JustTheRecipe::Authenticate
3
2
 
4
3
  def initialize(app_id, app_key)
5
4
  @app_id, @app_key = app_id, app_key
@@ -1,5 +1,3 @@
1
- require './lib/just-the-recipe.rb'
2
-
3
1
  class JustTheRecipe::CLI
4
2
 
5
3
  def call
@@ -1,6 +1,3 @@
1
- require 'pry'
2
- require './lib/just-the-recipe.rb'
3
-
4
1
  class JustTheRecipe::Cookbook
5
2
 
6
3
  attr_accessor :name
@@ -1,6 +1,3 @@
1
- require 'pry'
2
- require './lib/just-the-recipe.rb'
3
-
4
1
  class JustTheRecipe::Recipe
5
2
 
6
3
  attr_accessor :title, :description, :ingredients, :steps, :url, :cookbook
@@ -1,7 +1,3 @@
1
- require 'pry'
2
-
3
- require './lib/just-the-recipe.rb'
4
-
5
1
  class JustTheRecipe::Scraper
6
2
 
7
3
  attr_accessor :url
@@ -1,7 +1,3 @@
1
- require 'pry'
2
-
3
- require './lib/just-the-recipe.rb'
4
-
5
1
  class JustTheRecipe::Searcher
6
2
 
7
3
  def initialize(search_term)
@@ -1,3 +1,3 @@
1
1
  module JustTheRecipe
2
- VERSION = "0.5.0"
2
+ VERSION = "0.10.0"
3
3
  end
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.5.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