lib/rya.rb in rya-0.0.1 vs lib/rya.rb in rya-0.1.0
- old
+ new
@@ -1,5 +1,18 @@
+require "abort_if"
+
+# Needed for Rya::CoreExtensions::Process
+require "systemu"
+
require "rya/version"
+require "rya/core_extensions"
module Rya
- # Your code goes here...
+ # If you want to use AbortIf from this module, you can use it as Rya::AbortIf
+ module AbortIf
+ # To include the methods
+ extend Object::AbortIf
+
+ # To include the helper classes
+ include Object::AbortIf
+ end
end