yogi 0.2.5 → 0.2.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -4
- data/lib/yogi/version.rb +1 -1
- data/lib/yogi.rb +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b817637764e0c3e93b0e9e8a53c0f8a434dd8c2
|
4
|
+
data.tar.gz: daaa110170fa037213bc1cb4914337bb60ac87f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
7
|
-
|
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.
|
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
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)
|