auser-aska 0.0.3 → 0.0.4

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. data/CHANGELOG +4 -0
  2. data/README +3 -0
  3. data/aska.gemspec +1 -1
  4. data/lib/aska.rb +2 -0
  5. metadata +1 -1
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ v0.0.4 * Added lookup methods
2
+ * Added supported methods
3
+ * Updated README
4
+ * Renamed all the attr_accessors and namespaced them inside aska
1
5
  v0.0.3 * Changed the methodology of storing the rules
2
6
  * Removed evaluation
3
7
  v0.0.2 * Added buckets of rules
data/README CHANGED
@@ -41,6 +41,9 @@
41
41
  gem install aska
42
42
 
43
43
  == ROADMAP
44
+ * v0.0.4 - Namespace rules
45
+ * v0.0.3 - Remove eval from the evaluation of rules
46
+ * v0.0.2 - Add buckets for rules
44
47
  * v0.0.1 - First release
45
48
 
46
49
  == LICENSE:
data/aska.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{aska}
3
- s.version = "0.0.3"
3
+ s.version = "0.0.4"
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new("= 1.2") if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ["Ari Lerner"]
data/lib/aska.rb CHANGED
@@ -11,6 +11,8 @@ module Aska
11
11
  v = line[/(.+)[=\\<>](.*)/, 2].gsub(/\s+/, '')
12
12
  m = line[/[=\\<>]/, 0].gsub(/\s+/, '')
13
13
 
14
+ puts line
15
+
14
16
  create_instance_variable(k)
15
17
  r << {k => [m, v]}
16
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auser-aska
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ari Lerner