tinymce-rails 3.4.7.0.2 → 3.4.8
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/Rakefile +2 -2
- data/assets/integration/tinymce/preinit.js.erb +1 -1
- data/assets/precompiled/tinymce/jquery.tinymce.js +1 -1
- data/assets/precompiled/tinymce/plugins/advlink/js/advlink.js +8 -1
- data/assets/precompiled/tinymce/plugins/autoresize/editor_plugin.js +1 -1
- data/assets/precompiled/tinymce/plugins/autoresize/editor_plugin_src.js +20 -38
- data/assets/precompiled/tinymce/plugins/contextmenu/editor_plugin.js +1 -1
- data/assets/precompiled/tinymce/plugins/contextmenu/editor_plugin_src.js +1 -0
- data/assets/precompiled/tinymce/plugins/emotions/emotions.htm +1 -1
- data/assets/precompiled/tinymce/plugins/lists/editor_plugin.js +1 -1
- data/assets/precompiled/tinymce/plugins/lists/editor_plugin_src.js +21 -0
- data/assets/precompiled/tinymce/plugins/media/js/media.js +5 -5
- data/assets/precompiled/tinymce/plugins/table/js/table.js +5 -1
- data/assets/precompiled/tinymce/themes/advanced/editor_template.js +1 -1
- data/assets/precompiled/tinymce/themes/advanced/editor_template_src.js +2 -2
- data/assets/precompiled/tinymce/tiny_mce.js +1 -1
- data/assets/precompiled/tinymce/tiny_mce_jquery.js +1 -1
- data/assets/precompiled/tinymce/tiny_mce_jquery_src.js +202 -128
- data/assets/precompiled/tinymce/tiny_mce_src.js +202 -128
- data/assets/vendor/tinymce/jquery-tinymce.js +1 -1
- data/assets/vendor/tinymce/tiny_mce.js +202 -128
- data/assets/vendor/tinymce/tiny_mce_jquery.js +202 -128
- data/lib/tinymce/railtie.rb +6 -0
- data/lib/tinymce/version.rb +1 -2
- metadata +5 -6
data/lib/tinymce/railtie.rb
CHANGED
@@ -1,4 +1,10 @@
|
|
1
1
|
module TinyMCE
|
2
|
+
def self.base
|
3
|
+
[Rails.application.config.action_controller.asset_host,
|
4
|
+
ActionController::Base.config.relative_url_root,
|
5
|
+
Rails.application.config.assets.prefix, "/tinymce"].compact.join
|
6
|
+
end
|
7
|
+
|
2
8
|
class Railtie < Rails::Railtie
|
3
9
|
def asset_root
|
4
10
|
File.join(File.dirname(__FILE__), "../../assets")
|
data/lib/tinymce/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tinymce-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 7
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
|
11
|
-
- 2
|
12
|
-
version: 3.4.7.0.2
|
9
|
+
- 8
|
10
|
+
version: 3.4.8
|
13
11
|
platform: ruby
|
14
12
|
authors:
|
15
13
|
- Sam Pohlenz
|
@@ -17,7 +15,7 @@ autorequire:
|
|
17
15
|
bindir: bin
|
18
16
|
cert_chain: []
|
19
17
|
|
20
|
-
date: 2012-
|
18
|
+
date: 2012-02-05 00:00:00 Z
|
21
19
|
dependencies:
|
22
20
|
- !ruby/object:Gem::Dependency
|
23
21
|
name: railties
|
@@ -348,3 +346,4 @@ specification_version: 3
|
|
348
346
|
summary: Rails asset pipeline integration for TinyMCE.
|
349
347
|
test_files: []
|
350
348
|
|
349
|
+
has_rdoc:
|