manuscript 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/manuscript/template_file.rb +2 -2
- data/lib/manuscript/template_file_manager.rb +1 -0
- data/manuscript.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.3
|
@@ -5,7 +5,7 @@ module Manuscript
|
|
5
5
|
validates_presence_of :file_file_name
|
6
6
|
|
7
7
|
has_attached_file :file,
|
8
|
-
:path => "./template_files/:
|
9
|
-
:url => "/template_files/:
|
8
|
+
:path => "./template_files/:id/:basename.:extension",
|
9
|
+
:url => "/template_files/:id/:basename.:extension"
|
10
10
|
end
|
11
11
|
end
|
data/manuscript.gemspec
CHANGED