extended_inherited_resources 0.2.0 → 0.2.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.
- data/README.rdoc +15 -0
- data/VERSION +1 -1
- data/extended_inherited_resources.gemspec +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
== Differences to original Inherited Resources
|
2
|
+
|
3
|
+
* Pagination is on by default
|
4
|
+
* to alter, pass :pagination to defaults, i.e.
|
5
|
+
* defaults :pagination => false
|
6
|
+
* defaults :pagination => true #20
|
7
|
+
* defaults :pagination => 15
|
8
|
+
* default redirect to update and create is now index
|
9
|
+
* to alter, pass :redirects to defaults, i.e.
|
10
|
+
* defaults :redirects => {:create => :show, :update => :index}
|
11
|
+
* defaults :redirects => {:create => :edit}
|
12
|
+
* You can enable searchlogic integration easily, i.e. (Searchlogic object will be saved in @search object)
|
13
|
+
* defaults :searchlogic => true
|
14
|
+
* defaults :searchlogic => :params_for_sl #key from params in which params for searchlogic are returned
|
15
|
+
|
1
16
|
== Extended Inherited Resources
|
2
17
|
|
3
18
|
Inherited Resources speeds up development by making your controllers inherit
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{extended_inherited_resources}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["josevalim", "stevo"]
|