README.rdoc in schizo-0.1.3 vs README.rdoc in schizo-0.2.0
- old
+ new
@@ -160,9 +160,22 @@
poster.as(Commenter) do |commenter|
# Has all the methods of a Commenter AND Poster
end
end
+== ActiveSupport::Concern
+
+You can use <tt>ActiveSupport::Concern</tt> instead of <tt>Schizo::Role</tt>
+
+ module Baz
+ extend ActiveSupport::Concern
+ def something; end
+ end
+
+ foo = Foo.new
+ baz = foo.as(Baz)
+ baz.something
+
== Documentation
{\http://doc.stochasticbytes.com/schizo/index.html}[http://doc.stochasticbytes.com/schizo/index.html]
== Contact