aska 0.0.7 → 0.0.8

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.
data/Manifest CHANGED
@@ -1,4 +1,3 @@
1
- aska.gemspec
2
1
  CHANGELOG
3
2
  lib/aska.rb
4
3
  lib/object.rb
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ begin
6
6
  p.summary = "The basics of an expert system"
7
7
  p.url = "http://blog.citrusbyte.com"
8
8
  p.dependencies = []
9
- p.version = "0.0.7"
9
+ p.version = "0.0.8"
10
10
  p.install_message =<<-EOM
11
11
 
12
12
  Aska - Expert system basics
data/aska.gemspec CHANGED
@@ -1,11 +1,11 @@
1
1
 
2
- # Gem::Specification for Aska-0.0.7
2
+ # Gem::Specification for Aska-0.0.8
3
3
  # Originally generated by Echoe
4
4
 
5
5
  --- !ruby/object:Gem::Specification
6
6
  name: aska
7
7
  version: !ruby/object:Gem::Version
8
- version: 0.0.7
8
+ version: 0.0.8
9
9
  platform: ruby
10
10
  authors:
11
11
  - Ari Lerner
@@ -38,7 +38,6 @@ extra_rdoc_files:
38
38
  - LICENSE
39
39
  - README
40
40
  files:
41
- - aska.gemspec
42
41
  - CHANGELOG
43
42
  - lib/aska.rb
44
43
  - lib/object.rb
@@ -48,6 +47,7 @@ files:
48
47
  - README
49
48
  - spec/rules_spec.rb
50
49
  - spec/spec_helper.rb
50
+ - aska.gemspec
51
51
  has_rdoc: true
52
52
  homepage: http://blog.citrusbyte.com
53
53
  post_install_message: |+
data/lib/aska.rb CHANGED
@@ -104,7 +104,7 @@ module Aska
104
104
 
105
105
  class Rules < Array
106
106
  def to_s
107
- "\"#{self.join('", "')}\""
107
+ "#{self.join('", "')}"
108
108
  end
109
109
  end
110
110
  end
data/spec/rules_spec.rb CHANGED
@@ -19,7 +19,7 @@ describe "Rules" do
19
19
  @car.names.class.should == Aska::Rules
20
20
  end
21
21
  it "should be able to turn them into a string" do
22
- @car.names.to_s.should == "\"x>0\", \"y>0\", \"x>y\""
22
+ @car.names.to_s.should == "x>0\", \"y>0\", \"x>y"
23
23
  end
24
24
  it "should be able to say that rules are defined when they are defined" do
25
25
  @car.names.should_not be_nil
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aska
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ari Lerner
@@ -35,7 +35,6 @@ extra_rdoc_files:
35
35
  - LICENSE
36
36
  - README
37
37
  files:
38
- - aska.gemspec
39
38
  - CHANGELOG
40
39
  - lib/aska.rb
41
40
  - lib/object.rb
@@ -45,6 +44,7 @@ files:
45
44
  - README
46
45
  - spec/rules_spec.rb
47
46
  - spec/spec_helper.rb
47
+ - aska.gemspec
48
48
  has_rdoc: true
49
49
  homepage: http://blog.citrusbyte.com
50
50
  post_install_message: |+