rails_wangeditor 0.1.9 → 0.2.0
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.
- checksums.yaml +4 -4
- data/lib/rails_wangeditor/version.rb +1 -1
- data/lib/tasks/assets.rake +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6f124489f5f48694db794c3e4fa4054c577e2e36
|
|
4
|
+
data.tar.gz: 11c01d56be039e0ba5de4c8bb26968880020948c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc7683b75f2870aee0c54f4afc76667af625b9563405f057fddeef236694657bfc7ceab6d9da63dc57633da853a8e0bd4faca93cb388d5a9e3de158ec30bd75f
|
|
7
|
+
data.tar.gz: b595a4fee30d4935ecb59b4d649a0b46f51c38e4d9ee05d88df25c2ebdf9d5532b9a5f3f608f4adb639cfec4d91918c3ec14e25dc55abdb9543ccd67f7bd9386
|
data/lib/tasks/assets.rake
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
namespace :wangeditor do
|
|
2
2
|
desc "copy wangeditor assets into public folder"
|
|
3
3
|
task :assets do
|
|
4
|
-
puts "copying wangeditor into public/
|
|
5
|
-
dest_path = "#{Rails.root}/public
|
|
4
|
+
puts "copying wangeditor into public/fonts folder ..."
|
|
5
|
+
dest_path = "#{Rails.root}/public"
|
|
6
6
|
FileUtils.mkdir_p dest_path
|
|
7
|
-
FileUtils.cp_r "#{RailsWangeditor.root_path}/vendor/assets/
|
|
7
|
+
FileUtils.cp_r "#{RailsWangeditor.root_path}/vendor/assets/fonts/", dest_path
|
|
8
8
|
end
|
|
9
|
-
end
|
|
9
|
+
end
|