just-the-recipe 0.3.0 → 0.4.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: 627a3e094164f52e11807e69609c3029e3658232402fd71db7ab50e83e661033
4
- data.tar.gz: dd964f0b06e42624376a8482a34462cf8eaf5e99d17e6efca867dc8dba973ae5
3
+ metadata.gz: 783bc9148a0c31e87a91b77ff5bc63e6f3e576a9569647611f97d91d43539c2c
4
+ data.tar.gz: 5566f44576ebdc8659833e54fc9d57c1c79a7adcfae5eefb20d0a3427d9dfdf3
5
5
  SHA512:
6
- metadata.gz: 8f2268d3e59379e042f49deb214b04efc1eca8fd24217625b8ec714ea44b22233094bdbfaae562696531fe50f445cc872f2f5fbe0a318eb144af36a7b8878c35
7
- data.tar.gz: 221e2c8a7850e30d568955b315021e49d2f186dd4df0f6c4c0b1c6cadca9c9d507037f42d0843c1b7a46013de0e9212d5bcdec0b82c91cdfcd43177f4ae22681
6
+ metadata.gz: 45098457fc97e62b54ccc92f73195c7cffb868a754a4e462b255b3d7bdfecce746d510b60a77055bfe9a910ef9f6d0a8cbdbf7de761a231535751cf7eb2ab493
7
+ data.tar.gz: 2ccc4c48093df3fc60e57aa0d432ab65bc557992b76900a4452f4a5e7d9a8c1ecc26c4d02daf8af5b6b12d9328b3a7c7a613cf0323bc02dd66f5acebffe1962c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- just-the-recipe (0.3.0)
4
+ just-the-recipe (0.4.0)
5
5
  dotenv
6
6
  nokogiri
7
7
  open-uri
data/README.md CHANGED
@@ -4,8 +4,7 @@
4
4
 
5
5
  Add this line to your application's Gemfile:
6
6
 
7
- ```ruby
8
- gem 'just-the-recipe'
7
+ ```ruby gem 'just-the-recipe'
9
8
  ```
10
9
 
11
10
  And then execute:
data/bin/console CHANGED
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require "bundler/setup"
5
- require "./lib/environment.rb"
5
+ require './lib/just-the-recipe.rb'
6
6
 
7
7
  # You can add fixtures and/or initialization code here to make experimenting
8
8
  # with your gem easier. You can also use a different console, if you like.
data/bin/just-the-recipe CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
  require "bundler/setup"
3
- require "./lib/environment.rb"
3
+ require './lib/just-the-recipe.rb'
4
4
 
5
5
  JustTheRecipe::CLI.new.call
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "./lib/environment.rb"
3
+ require "./lib/just-the-recipe.rb"
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "just-the-recipe"
File without changes
@@ -1,4 +1,4 @@
1
- require_relative '../environment.rb'
1
+ require './lib/just-the-recipe.rb'
2
2
 
3
3
  class JustTheRecipe::CLI
4
4
 
@@ -1,5 +1,5 @@
1
1
  require 'pry'
2
- require './lib/environment.rb'
2
+ require './lib/just-the-recipe.rb'
3
3
 
4
4
  class JustTheRecipe::Cookbook
5
5
 
@@ -1,5 +1,5 @@
1
1
  require 'pry'
2
- require './lib/environment.rb'
2
+ require './lib/just-the-recipe.rb'
3
3
 
4
4
  class JustTheRecipe::Recipe
5
5
 
@@ -1,6 +1,6 @@
1
1
  require 'pry'
2
2
 
3
- require './lib/environment.rb'
3
+ require './lib/just-the-recipe.rb'
4
4
 
5
5
  class JustTheRecipe::Scraper
6
6
 
@@ -1,6 +1,6 @@
1
1
  require 'pry'
2
2
 
3
- require './lib/environment.rb'
3
+ require './lib/just-the-recipe.rb'
4
4
 
5
5
  class JustTheRecipe::Searcher
6
6
 
@@ -1,3 +1,3 @@
1
1
  module JustTheRecipe
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.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.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - George Dilthey
@@ -87,14 +87,13 @@ files:
87
87
  - bin/just-the-recipe
88
88
  - bin/setup
89
89
  - just-the-recipe.gemspec
90
- - lib/environment.rb
90
+ - lib/just-the-recipe.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
94
94
  - lib/just-the-recipe/scraper.rb
95
95
  - lib/just-the-recipe/searcher.rb
96
96
  - lib/just-the-recipe/version.rb
97
- - notes.md
98
97
  homepage: https://github.com/george-dilthey/just-the-recipe
99
98
  licenses: []
100
99
  metadata:
data/notes.md DELETED
@@ -1,4 +0,0 @@
1
-
2
- 1. Refactor with TTY-prompt
3
- 2. Fix error when API returns nothing.
4
- 3. Figure out gem stuff