yogi 0.2.5 → 0.2.5.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -4
  3. data/lib/yogi/version.rb +1 -1
  4. data/lib/yogi.rb +4 -4
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 73af9b9684bdab671788beda4af5d2d967836724
4
- data.tar.gz: d66003a421b624cae5997bb5b6002c2e60b549ef
3
+ metadata.gz: 7b817637764e0c3e93b0e9e8a53c0f8a434dd8c2
4
+ data.tar.gz: daaa110170fa037213bc1cb4914337bb60ac87f4
5
5
  SHA512:
6
- metadata.gz: 47585cb4358573afb4686fa5aa90f127883d90326b7538007178a03b413b385f75043609d6596460692afe061abb2f22f0c9ce77b2f4a6a90a0f96d946b60f2d
7
- data.tar.gz: 9cf340dc45fc8189f4402fd0a3b71055dbcbb67616176eea108720cabf961ed92c5075f62842113e0e35d0c896a470c24a740e93ab9f7b2fb55b095e436f0136
6
+ metadata.gz: 1ef15a93f10558e7eb881e7fa1f5b1d96fda10af31efae9992ac439dd4e166f08cf6865376290876c7b93bec8f29fa769337948aeddb22f1a36f630d8ef7a5e9
7
+ data.tar.gz: 9a86381226357e88942aaf0d838b025eb2897c32516d03087d5786c28d9502f715ee4505cc611cefc8269cce0f0a422ef7512c2927ba504e370ba5c927da4f16
data/README.md CHANGED
@@ -3,17 +3,17 @@
3
3
  When new to rails getting used to error codes and debugging is quite helpful.
4
4
  to practice your debugging skills you can use this gem.
5
5
 
6
- Currently are just the activate and the fixme function working.
7
- to later stage a checkme will be included to keep track of your debugging progress.
6
+ Currently are just the basic 2 operations are working. So good enough to start practice your debugging skills, and when you get stuck you can fix your project anytime with just one word.
7
+ To later stage a checkme will be included to keep track of your debugging progress.
8
8
 
9
- latest stable version 0.2.4.
9
+ latest stable version 0.2.5.
10
10
 
11
11
  ## Installation
12
12
 
13
13
  Add this line to your application's Gemfile:
14
14
 
15
15
  ```ruby
16
- gem 'yogi'
16
+ gem 'yogi', '~> 0.2.5'
17
17
  ```
18
18
 
19
19
  And then execute:
@@ -30,6 +30,9 @@ type "activate" to generate some errors in your rails project...happy debugging.
30
30
 
31
31
  sick of debugging type "fixme"
32
32
 
33
+ ## in Planing
34
+ checkme executable to check on fixed error status and better feedback on debugging status
35
+ increase in error complexity
33
36
 
34
37
  ## Contributing
35
38
 
data/lib/yogi/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Yogi
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.5.5"
3
3
  end
data/lib/yogi.rb CHANGED
@@ -62,8 +62,8 @@ module Yogi
62
62
  count_hash = []
63
63
  buffer = File.open('.ignoremefile.txt', 'r').read
64
64
  file_sample = JSON.parse(buffer)
65
- puts file_sample.class
66
- puts file_sample
65
+ # puts file_sample.class
66
+ # puts file_sample
67
67
 
68
68
 
69
69
  file_sample.each do |file_name|
@@ -185,8 +185,8 @@ module Yogi
185
185
  i = 0
186
186
  buffer = File.open('.ignoremefile.txt', 'r').read
187
187
  file_sample = JSON.parse(buffer)
188
- puts file_sample.class
189
- puts file_sample
188
+ # puts file_sample.class
189
+ # puts file_sample
190
190
 
191
191
  file_sample.each do |file_name|
192
192
  text = File.open(file_name, "r"){ |file| file.read }#File.read(file_name)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yogi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Langnickel