presentable 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/presentable.gemspec +1 -1
- data/rails/init.rb +2 -2
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/presentable.gemspec
CHANGED
data/rails/init.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'presentable'
|
2
2
|
|
3
|
-
ActiveRecord::Base.send(:
|
3
|
+
ActiveRecord::Base.send(:include, Presentable) if defined? ActiveRecord
|
4
4
|
Presentable.send(:include, ActionView::Helpers) if defined? ActionView
|
5
5
|
|
6
|
-
Array.send(:
|
6
|
+
Array.send(:include, Presentable::Collection)
|