cullender 0.0.1 → 0.0.2

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.
@@ -20,14 +20,14 @@ describe Cullender::RulesHelper do
20
20
  context "is base" do
21
21
  it "renders the attribute select menu and OR submit btn" do
22
22
  html = helper.cullender_collection_or_select(["attr1", "attr2"], [], {:base => true})
23
- html.should have_selector("select#or_raise_fieldprefix", :text => "attr1\nattr2")
23
+ html.should have_selector("select#or_raise_fieldprefix", :text => "attr1attr2")
24
24
  html.should have_selector("input[type='submit'][name='or[raise]prefix']")
25
25
  end
26
26
  end
27
27
  context "is not a base" do
28
28
  it "renders the attribute select menu and OR submit btn" do
29
29
  html = helper.cullender_collection_or_select(["attr1", "attr2"])
30
- html.should have_selector("select#or_fieldprefix", :text => "attr1\nattr2")
30
+ html.should have_selector("select#or_fieldprefix", :text => "attr1attr2")
31
31
  html.should have_selector("input[type='submit'][name='or[commit]prefix']")
32
32
  end
33
33
  end
@@ -40,7 +40,7 @@ describe Cullender::RulesHelper do
40
40
  end
41
41
  it "renders the attribute select menu and AND submit btn" do
42
42
  html = helper.cullender_collection_and_select(["attr1", "attr2"])
43
- html.should have_selector("select#and_fieldprefix", :text => "attr1\nattr2")
43
+ html.should have_selector("select#and_fieldprefix", :text => "attr1attr2")
44
44
  html.should have_selector("input[type='submit'][name='and[commit]prefix']")
45
45
  end
46
46
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cullender
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Waddington
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-04-26 00:00:00.000000000 Z
11
+ date: 2013-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: 4.0.0.beta1
19
+ version: 4.0.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: 4.0.0.beta1
26
+ version: 4.0.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: tire
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -108,9 +108,7 @@ dependencies:
108
108
  - - '>='
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
- description: Cullender allows you to filter out only what is important by creating
112
- ElasticSearch percolate queries allowing you to be notified only when a desired
113
- rule is met.
111
+ description: A rails engine to add undo and redo buttons to your flash messages.
114
112
  email:
115
113
  - cwadding@gmail.com
116
114
  executables: []
@@ -241,10 +239,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
241
239
  version: '0'
242
240
  requirements: []
243
241
  rubyforge_project:
244
- rubygems_version: 2.0.2
242
+ rubygems_version: 2.0.6
245
243
  signing_key:
246
244
  specification_version: 4
247
- summary: A rails engine to add notification when an event occurs.
245
+ summary: Easily add undo and redo logic to your rails application.
248
246
  test_files:
249
247
  - spec/controllers/cullender/rules_controller_spec.rb
250
248
  - spec/cullender/controllers/filter_logic_spec.rb