new_class 0.1.0 → 0.1.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/CHANGELOG.rdoc +4 -0
- data/README.textile +1 -1
- data/VERSION +1 -1
- data/lib/new_class.rb +1 -1
- data/lib/new_class/version.rb +1 -1
- metadata +1 -1
data/CHANGELOG.rdoc
CHANGED
data/README.textile
CHANGED
@@ -131,7 +131,7 @@ h2. Last remarks
|
|
131
131
|
|
132
132
|
Please check out "test/carrierwave_test.rb":https://github.com/archan937/new_class/blob/master/test/carrierwave_test.rb and "test/class_test.rb":https://github.com/archan937/new_class/blob/master/test/class_test.rb for most of the tests available. You can run the unit tests with @rake@ within the terminal.
|
133
133
|
|
134
|
-
Also, the NewClass repo is provided with @script/console@ which you can
|
134
|
+
Also, the NewClass repo is provided with @script/console@ which you can use for testing purposes.
|
135
135
|
|
136
136
|
Note: *NewClass is successfully tested using Ruby 1.8.7 and Ruby 1.9.2*
|
137
137
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/lib/new_class.rb
CHANGED
@@ -39,7 +39,7 @@ module NewClass
|
|
39
39
|
|
40
40
|
module MethodMissing
|
41
41
|
def method_missing(method, *args)
|
42
|
-
_variables.include?(key = method.to_sym) ?
|
42
|
+
_variables.include?(key = method.to_sym) ? _variables[key] : super
|
43
43
|
end
|
44
44
|
def respond_to?(symbol, include_private = false)
|
45
45
|
_variables.include?(symbol.to_sym) || super
|
data/lib/new_class/version.rb
CHANGED