just-the-recipe 0.12.0 → 0.13.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: 99ab498a5f34d65079847365b89e0e38293b0b2bac06d4dcdc0719c13e29df0b
4
- data.tar.gz: 1eed4b063efaa5e3fd02bbf0358a9014eb8383f808ef020f0181c80ff6856d00
3
+ metadata.gz: bb79f03d347799387c574b7f113c84487a15b5b60ac4ec608a8b12266d97cae1
4
+ data.tar.gz: 860281d233fc35e9d24fc93e3025e22654e17906a8e3d7446cd9464d126488dc
5
5
  SHA512:
6
- metadata.gz: c0ff391778cbf299a19561579da616dc3c0817a32c37ad8a39b59324f1d45bf00157aa14b3d3ab20bd597285c7c9b90b587e1fb81365f5bbbe8ea790f90385d1
7
- data.tar.gz: 5e5a0919f35194d45029c56be070cf2aa2dd556df6fd017073392805d7357e29847b944015eb24d8734958be5bf6430e4d83f4bb8cb8627d58de4311f69e3eef
6
+ metadata.gz: 90b3770b96f0ef788d630594738de8713fd64e1fbc1c0c434642c7f30a3a7447c6304dd1fb5adaf18c440ba6453f26b801ec65675a115ec6d1fc2f92e12b1dd4
7
+ data.tar.gz: 28549e2bf2c4978b750efe1750d059c1704ee6fe96310ab5834fd542c5b590b8c31c04650ddece24d2414642e577badf3743c2e686f346e9afe4156f28deb4f1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- just-the-recipe (0.12.0)
4
+ just-the-recipe (0.13.0)
5
5
  dotenv
6
6
  nokogiri
7
7
  open-uri
data/README.md CHANGED
@@ -8,8 +8,9 @@ Your cookbooks are re-instantiated when you enter the app again so you can conti
8
8
 
9
9
  # Installation
10
10
 
11
- Because we save your cookbooks as text files, its best to have this app live in its own repository. Clone down this git repository and then execute:
11
+ Because we save your cookbooks as text files, its best to have this app live in its own repository. Clone down this git repository and then use bundle to install the dependencies:
12
12
 
13
+ $ git clone https://github.com/george-dilthey/just-the-recipe.git
13
14
  $ bundle install
14
15
 
15
16
  # Usage
@@ -27,7 +28,11 @@ Alternatively, you can call `JustTheRecipe.authorize({YOUR APP ID}, {YOUR APP KE
27
28
 
28
29
  Run the app by running the bin file `just-the-recipe`.
29
30
 
30
- $ ruby bin/just-the-recipe
31
+ $ bin/just-the-recipe
32
+
33
+ If you get a permission denied error, run this to give the bin file run permissions:
34
+
35
+ $ chmod +x bin/just-the-recipe
31
36
 
32
37
  Alternatively, you can call the `JustTheRecipe::CLI.new.call` method.
33
38
 
data/bin/just-the-recipe CHANGED
@@ -2,4 +2,4 @@
2
2
  require "bundler/setup"
3
3
  require './lib/just-the-recipe.rb'
4
4
 
5
- JustTheRecipe::CLI.new.call
5
+ JustTheRecipe::CLI.new.call
@@ -51,6 +51,3 @@ class JustTheRecipe::Cookbook
51
51
  File.delete("#{@name}.txt")
52
52
  end
53
53
  end
54
-
55
- # gd_cookbook = JustTheRecipe::Cookbook.new("George's Cookbook")
56
- # binding.pry
@@ -1,5 +1,5 @@
1
1
  module JustTheRecipe
2
- VERSION = "0.12.0"
2
+ VERSION = "0.13.0"
3
3
 
4
4
  @@app_id = ENV["APP_ID"]
5
5
  @@app_key = ENV["APP_KEY"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: just-the-recipe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - George Dilthey
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-23 00:00:00.000000000 Z
11
+ date: 2021-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: open-uri