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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4c32271b2159ddca9d5184de297eff129bf8bb15
4
- data.tar.gz: 87874084606f85996e8a6e2ff7866fea27fb9e4e
3
+ metadata.gz: 3595480994acbccbad005507cca34f5b9468bab7
4
+ data.tar.gz: 9232b95f5436613838dac04976cb900323da67c8
5
5
  SHA512:
6
- metadata.gz: 39e00d301722a72bb9054148c204fca6806821a1f9733dcd115924c30086f2b4769a974dffd73ff21c8b7f354cba6925f8de1b85d5c4825219e0a8b7b44b780f
7
- data.tar.gz: 0712a57c71e7729ce6a599acf3089f71758ee1ee9cb0c432c71c9099901833e776b044d8d0b4475b0fab18049ea86e4848663e2e947f1cf55c0ddb7259f6d5ae
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
@@ -1,3 +1,3 @@
1
1
  module Polyblock
2
- VERSION = "0.7.1"
2
+ VERSION = "0.7.2"
3
3
  end
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.1
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-22 00:00:00.000000000 Z
11
+ date: 2014-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails