venom 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/venom/generators/workshop.rb +2 -2
- data/lib/venom/version.rb +1 -1
- metadata +1 -1
@@ -82,9 +82,9 @@ module Venom
|
|
82
82
|
|
83
83
|
def copy_base
|
84
84
|
if use_library
|
85
|
-
template "base.rb.tt", "#{name}/lib/definitions"
|
85
|
+
template "base.rb.tt", "#{name}/lib/definitions/base.rb"
|
86
86
|
else
|
87
|
-
template "base.rb.tt", "#{name}/specs/definitions"
|
87
|
+
template "base.rb.tt", "#{name}/specs/definitions/base.rb"
|
88
88
|
end
|
89
89
|
end
|
90
90
|
|
data/lib/venom/version.rb
CHANGED