uniquefy 0.0.2 → 0.0.3
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/lib/uniquefy/version.rb +1 -1
- data/lib/uniquefy.rb +5 -3
- metadata +1 -1
data/lib/uniquefy/version.rb
CHANGED
data/lib/uniquefy.rb
CHANGED
|
@@ -29,12 +29,14 @@ module Uniquefy
|
|
|
29
29
|
end
|
|
30
30
|
end
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def self.hello_world()
|
|
35
|
+
return "returning helloworld !!! from uniquefy"
|
|
35
36
|
end
|
|
36
37
|
end
|
|
37
38
|
|
|
39
|
+
|
|
38
40
|
class ActiveRecord::Base
|
|
39
41
|
include Uniquefy
|
|
40
42
|
end
|