idra 0.1.0 → 0.1.1

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Readme.md +6 -0
  3. data/lib/idra.rb +1 -14
  4. data/lib/idra/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 68e9b10e44c01a0176ab696094b0a400b868b21a
4
- data.tar.gz: 69e24798619594a1452f8a0d23bfa11ef2feaf1f
3
+ metadata.gz: c34869f2865bcf1c1090b25e24903a6053b62536
4
+ data.tar.gz: 3768ac353a1b7eccbd8fd75ec391e07a28bf5722
5
5
  SHA512:
6
- metadata.gz: 630a6c381614f0df48771072c7e89f5b9db984a7d834faf8e01dc7f0042ffe3c6052084037615cb053cdb617319afc1823370da3dc287d2a7685fe28477dc80f
7
- data.tar.gz: 704b463912a650ff1f0bcb1221fc88e41d84c681ddaba4a6e95c78fc54b87eb49b0552235046c19f05f86c419853dbf90b1d774a0f1e71418d899cb399a21d55
6
+ metadata.gz: a2839523c3b522f6efc1d8fc1ac77ab393e148c354a07771eaab9823d6b18b8ff0818de3c8f625aabf8b8169955a334c0b66d7ae41ba2372346479fb2598fed4
7
+ data.tar.gz: 48677044e94d4f7330aff90def3721e9ef76023d56df306654c51a78147ffcd289353217cc6af56eb2c52784ffea5ea8d2ec99feab3c284fe64ef3df4849ac42
data/Readme.md CHANGED
@@ -39,3 +39,9 @@ end
39
39
  You can read the code on github: <https://github.com/makevoid/idra/blob/master/lib/idra.rb> -- It's just few lines.
40
40
 
41
41
  enjoy
42
+
43
+
44
+ ### Changelog
45
+
46
+ - 0.1.1 - fix #refresh
47
+ - 0.1.0 - first release
@@ -42,7 +42,7 @@ class Idra
42
42
  end
43
43
 
44
44
  def refresh
45
- @enabled = false
45
+ @enabled = true
46
46
  end
47
47
 
48
48
  alias :enabled? :enabled
@@ -56,16 +56,3 @@ class Idra
56
56
  end
57
57
 
58
58
  end
59
-
60
- # usage:
61
- #
62
- # idra = Idra.new
63
- #
64
- # idra.add_request "https://api.github.com/users/i0rek"
65
- # idra.add_request "https://api.github.com/users/makevoid"
66
- # idra.add_request "https://api.github.com/users/pauldix"
67
- # idra.add_request "https://api.github.com/users/dbalatero"
68
- #
69
- # idra.run do |request|
70
- # puts request.response.body
71
- # end
@@ -1,3 +1,3 @@
1
1
  class Idra
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: idra
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francesco 'makevoid' Canessa