polyblock 0.7.1 → 0.7.2
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/generators/polyblock/install/install_generator.rb +18 -0
- data/lib/polyblock/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3595480994acbccbad005507cca34f5b9468bab7
|
4
|
+
data.tar.gz: 9232b95f5436613838dac04976cb900323da67c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a59b76d4d347504718d1d61052b90bb7afc47d9c45c757d05935192a2f2220f1fe8dda1ef81b73dcca8d59a510eea511aae91b82f333474653f1e981ae72543d
|
7
|
+
data.tar.gz: 8fb19556b5e38d33381d44b83cc533eaddfd2e346e9c305d7ac42eb9f4ccbd92ed4038d50e5f651dcd9e614571e9f26fb18fc2d39cedb8d6d156c078f04d7181
|
@@ -20,6 +20,24 @@ module Polyblock
|
|
20
20
|
migration_template "ckeditor_migration.rb", "db/migrate/create_ckeditor_assets.rb"
|
21
21
|
migration_template "polyblock_migration.rb", "db/migrate/create_polyblock_blocks.rb"
|
22
22
|
end
|
23
|
+
|
24
|
+
def inject_engine_routing
|
25
|
+
inject_into_file 'config/routes.rb', :after => 'Application.routes.draw do' do
|
26
|
+
"\n\n mount Ckeditor::Engine => '/ckeditor'\n mount Polyblock::Engine => '/polyblock'\n"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def inject_precompile_directives
|
31
|
+
inject_into_file 'config/application.rb', :after => 'class Application < Rails::Application' do
|
32
|
+
'\\n\\n config.autoload_paths += %W(#{config.root}/app/models/ckeditor)\\n config.assets.precompile += Ckeditor.assets\\n config.assets.precompile += %w(ckeditor/*)\\n'
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def inject_js_initializer
|
37
|
+
inject_into_file 'app/assets/javascripts/application.js', :before => '//= require_tree .' do
|
38
|
+
"//= require polyblock/init\n"
|
39
|
+
end
|
40
|
+
end
|
23
41
|
end
|
24
42
|
end
|
25
43
|
end
|
data/lib/polyblock/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: polyblock
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MacKinley Smith
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
11
|
+
date: 2014-07-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|