fine_print 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/README.md +2 -2
- data/lib/fine_print/version.rb +1 -1
- data/lib/fine_print/version.rb~ +1 -1
- data/lib/tasks/fine_print_tasks.rake +2 -2
- data/lib/tasks/fine_print_tasks.rake~ +2 -2
- metadata +1 -1
data/README.md
CHANGED
@@ -115,7 +115,7 @@ Here are some important notes about managing your agreements with FinePrint:
|
|
115
115
|
|
116
116
|
## Customization
|
117
117
|
|
118
|
-
You can customize FinePrint's stylesheets, javascripts, views
|
118
|
+
You can customize FinePrint's stylesheets, javascripts, views and even controllers to suit your needs.
|
119
119
|
|
120
120
|
Run the following command to copy a part of FinePrint into your main application:
|
121
121
|
|
@@ -123,7 +123,7 @@ Run the following command to copy a part of FinePrint into your main application
|
|
123
123
|
$ rake fine_print:copy:folder
|
124
124
|
```
|
125
125
|
|
126
|
-
Where folder is one of `stylesheets`, `javascripts`, `layouts`, `views
|
126
|
+
Where folder is one of `stylesheets`, `javascripts`, `layouts`, `views` or `controllers`.
|
127
127
|
|
128
128
|
Example:
|
129
129
|
|
data/lib/fine_print/version.rb
CHANGED
data/lib/fine_print/version.rb~
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
COPY_TASKS = ['assets/stylesheets', 'assets/javascripts', 'views/layouts', 'views', 'controllers'
|
1
|
+
COPY_TASKS = ['assets/stylesheets', 'assets/javascripts', 'views/layouts', 'views', 'controllers']
|
2
2
|
|
3
3
|
namespace :fine_print do
|
4
4
|
namespace :install do
|
@@ -32,7 +32,7 @@ namespace :fine_print do
|
|
32
32
|
Rake::Task["fine_print:install:migrations"].invoke
|
33
33
|
end
|
34
34
|
|
35
|
-
desc "Copy assets,
|
35
|
+
desc "Copy assets, layouts, views and controllers from fine_print to application"
|
36
36
|
task :copy do
|
37
37
|
COPY_TASKS.each do |path|
|
38
38
|
Rake::Task["fine_print:copy:#{File.basename(path)}"].invoke
|
@@ -1,4 +1,4 @@
|
|
1
|
-
COPY_TASKS = ['assets/stylesheets', 'assets/javascripts', 'layouts', 'views', 'controllers'
|
1
|
+
COPY_TASKS = ['assets/stylesheets', 'assets/javascripts', 'views/layouts', 'views', 'controllers']
|
2
2
|
|
3
3
|
namespace :fine_print do
|
4
4
|
namespace :install do
|
@@ -32,7 +32,7 @@ namespace :fine_print do
|
|
32
32
|
Rake::Task["fine_print:install:migrations"].invoke
|
33
33
|
end
|
34
34
|
|
35
|
-
desc "Copy assets,
|
35
|
+
desc "Copy assets, layouts, views, and controllers from fine_print to application"
|
36
36
|
task :copy do
|
37
37
|
COPY_TASKS.each do |path|
|
38
38
|
Rake::Task["fine_print:copy:#{File.basename(path)}"].invoke
|