BBenezech-papermill 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +9 -1
- data/VERSION +1 -1
- data/lib/papermill/papermill_asset.rb +3 -0
- data/papermill.gemspec +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -6,6 +6,14 @@ Try the demo to see for yourself.
|
|
6
6
|
See papermill_module.rb for a complete list of available options.
|
7
7
|
These options can be application wide, for a class, or set at the last moment for the helper.
|
8
8
|
|
9
|
+
You'll need something like this in your environment.rb
|
10
|
+
config.gem 'rsl-stringex', :lib => 'stringex', :source => 'http://gems.github.com'
|
11
|
+
config.gem 'paperclip'
|
12
|
+
config.gem 'authlogic'
|
13
|
+
config.gem 'mime-types', :lib => 'mime/types'
|
14
|
+
config.gem 'ryanb-acts-as-list', :lib => 'acts_as_list', :source => 'http://gems.github.com'
|
15
|
+
config.gem 'BBenezech-papermill', :lib => 'papermill', :source => 'http://gems.github.com'
|
16
|
+
|
9
17
|
In your model:
|
10
18
|
|
11
19
|
papermill :assets
|
@@ -50,7 +58,7 @@ You'll need rails 2.2, since their are calls to I18n.t. But it shouldn't be too
|
|
50
58
|
=== Demo :
|
51
59
|
|
52
60
|
You can use the custom template generator to get an example application up and running in no time.
|
53
|
-
|
61
|
+
|
54
62
|
rails -m http://gist.github.com/177714.txt papermill-example
|
55
63
|
|
56
64
|
=== Translation:
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.4
|
data/papermill.gemspec
CHANGED