ripplr 0.0.3.beta → 0.0.4.beta
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/lib/ripplr/queryable.rb +1 -1
- data/lib/ripplr/version.rb +1 -1
- data/spec/ripplr/queryable_spec.rb +2 -2
- metadata +1 -1
data/lib/ripplr/queryable.rb
CHANGED
data/lib/ripplr/version.rb
CHANGED
|
@@ -27,7 +27,7 @@ describe Ripplr::Queryable do
|
|
|
27
27
|
Given { lawnmower.stub(:key).and_return "ABCDEF012345" }
|
|
28
28
|
When (:result) { lawnmower.indexes_as }
|
|
29
29
|
Then { result.should == {
|
|
30
|
-
:
|
|
30
|
+
:id => "ABCDEF012345",
|
|
31
31
|
:title_text => "Lawnmower",
|
|
32
32
|
:description_text => "It’s a variation of the classic dumbbell row so it trains the muscles of your back."
|
|
33
33
|
}
|
|
@@ -41,7 +41,7 @@ describe Ripplr::Queryable do
|
|
|
41
41
|
Given { entry.stub(:key).and_return "XYZ1020" }
|
|
42
42
|
When (:result) { entry.indexes_as }
|
|
43
43
|
Then { result.should == {
|
|
44
|
-
:
|
|
44
|
+
:id => "XYZ1020",
|
|
45
45
|
:description_text => "4x8 BB Power Clean @ 135lbs.",
|
|
46
46
|
:created_at_dt => time
|
|
47
47
|
}
|