glebtv-ckeditor 4.4.7.3 → 4.4.7.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/ckeditor/override.js.erb +1 -3
- data/lib/ckeditor/version.rb +1 -1
- metadata +56 -42
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 024992675102131c25b02ba1f7c3227401ca064d
|
4
|
+
data.tar.gz: cd770c9149038aa403771c1d38b2101ab1caf61b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1ed5b2873da3958def6de3abbbc2f2a0d68f8dd1f4a7452384cf44fcd61cd992adb47ba3c15c0f405d496d2005419db01c0726bd526e292692740436373df69
|
7
|
+
data.tar.gz: 85a2a2f11e82f8b26a71db9d91dd410784b6adabed586daf825e0d77c80d0afc4e11475b06acef032c372d81686fc20d17d0755f733253a817abd00f39edd82f
|
@@ -1,9 +1,7 @@
|
|
1
1
|
window['CKEDITOR_BASEPATH'] = "/assets/ckeditor/";
|
2
2
|
|
3
3
|
window.CKEDITOR_ASSETS_MAPPING = {
|
4
|
-
<% Rails.application.assets.each_logical_path(
|
5
|
-
path =~ /ckeditor/ && path != 'ckeditor/override.js' && path != 'ckeditor/init.js' && path != 'ckeditor/ckeditor.js' && path.index('ckeditor/filebrowser').nil? && path.index('.md').nil? && (path.index('.html').nil? || !path.index('.htmlm').nil?) && path.index('LICENSE').nil? && path.index('README').nil? && path != 'ckeditor/plugins/preview/preview.js' && path != 'ckeditor/plugins/wsc/dialogs/ciframe.js' && path != 'ckeditor/plugins/wsc/dialogs/tmpFrameset.js'
|
6
|
-
}) do |asset| %>
|
4
|
+
<% Rails.application.assets.each_logical_path(Rails.application.config.assets.precompile).select {|path| path =~ /ckeditor/ && path != 'ckeditor/override.js' && path != 'ckeditor/init.js' && path != 'ckeditor/ckeditor.js' && path.index('ckeditor/filebrowser').nil? && path.index('.md').nil? && (path.index('.html').nil? || !path.index('.htmlm').nil?) && path.index('LICENSE').nil? && path.index('README').nil? && path != 'ckeditor/plugins/preview/preview.js' && path != 'ckeditor/plugins/wsc/dialogs/ciframe.js' && path != 'ckeditor/plugins/wsc/dialogs/tmpFrameset.js'}.each do |asset| %>
|
7
5
|
"<%= asset %>": "<%= asset_path(asset) %>",
|
8
6
|
<% end %>
|
9
7
|
}
|
data/lib/ckeditor/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: glebtv-ckeditor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.4.7.
|
4
|
+
version: 4.4.7.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Igor Galeta
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: sprockets
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.0'
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: rails
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -508,61 +522,61 @@ signing_key:
|
|
508
522
|
specification_version: 4
|
509
523
|
summary: Rails gem for easy integration ckeditor in your application
|
510
524
|
test_files:
|
511
|
-
- test/
|
525
|
+
- test/test_helper.rb
|
526
|
+
- test/integration/navigation_test.rb
|
527
|
+
- test/models/attachment_file_test.rb
|
528
|
+
- test/models/utils_test.rb
|
529
|
+
- test/models/picture_test.rb
|
530
|
+
- test/orm/mongoid.rb
|
531
|
+
- test/orm/active_record.rb
|
512
532
|
- test/dummy/db/migrate/20110623120047_create_posts.rb
|
513
|
-
- test/dummy/
|
514
|
-
- test/dummy/public/404.html
|
515
|
-
- test/dummy/public/favicon.ico
|
516
|
-
- test/dummy/public/500.html
|
517
|
-
- test/dummy/config/database.yml
|
518
|
-
- test/dummy/config/boot.rb
|
533
|
+
- test/dummy/config/routes.rb
|
519
534
|
- test/dummy/config/environment.rb
|
520
|
-
- test/dummy/config/
|
521
|
-
- test/dummy/config/application.rb
|
535
|
+
- test/dummy/config/database.yml
|
522
536
|
- test/dummy/config/initializers/wrap_parameters.rb
|
523
|
-
- test/dummy/config/initializers/session_store.rb
|
524
537
|
- test/dummy/config/initializers/inflections.rb
|
538
|
+
- test/dummy/config/initializers/mime_types.rb
|
539
|
+
- test/dummy/config/initializers/session_store.rb
|
540
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
525
541
|
- test/dummy/config/initializers/ckeditor.rb
|
526
542
|
- test/dummy/config/initializers/secret_token.rb
|
527
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
528
|
-
- test/dummy/config/initializers/mime_types.rb
|
529
|
-
- test/dummy/config/environments/development.rb
|
530
|
-
- test/dummy/config/environments/production.rb
|
531
|
-
- test/dummy/config/environments/test.rb
|
532
543
|
- test/dummy/config/mongoid.yml
|
533
|
-
- test/dummy/config/
|
534
|
-
- test/dummy/
|
544
|
+
- test/dummy/config/environments/test.rb
|
545
|
+
- test/dummy/config/environments/production.rb
|
546
|
+
- test/dummy/config/environments/development.rb
|
547
|
+
- test/dummy/config/locales/en.yml
|
548
|
+
- test/dummy/config/boot.rb
|
549
|
+
- test/dummy/config/application.rb
|
550
|
+
- test/dummy/Rakefile
|
551
|
+
- test/dummy/config.ru
|
535
552
|
- test/dummy/test/fixtures/files/rails.tar.gz
|
536
|
-
- test/dummy/
|
537
|
-
- test/dummy/app/helpers/posts_helper.rb
|
538
|
-
- test/dummy/app/helpers/application_helper.rb
|
539
|
-
- test/dummy/app/controllers/application_controller.rb
|
540
|
-
- test/dummy/app/controllers/posts_controller.rb
|
541
|
-
- test/dummy/app/assets/javascripts/application.js
|
542
|
-
- test/dummy/app/assets/stylesheets/scaffold.css
|
543
|
-
- test/dummy/app/assets/stylesheets/application.css
|
553
|
+
- test/dummy/test/fixtures/files/rails.png
|
544
554
|
- test/dummy/app/models/post.rb
|
545
|
-
- test/dummy/app/
|
555
|
+
- test/dummy/app/assets/stylesheets/application.css
|
556
|
+
- test/dummy/app/assets/stylesheets/scaffold.css
|
557
|
+
- test/dummy/app/assets/javascripts/application.js
|
558
|
+
- test/dummy/app/controllers/posts_controller.rb
|
559
|
+
- test/dummy/app/controllers/application_controller.rb
|
546
560
|
- test/dummy/app/views/posts/index.html.erb
|
561
|
+
- test/dummy/app/views/posts/new.html.erb
|
547
562
|
- test/dummy/app/views/posts/_form.html.erb
|
548
563
|
- test/dummy/app/views/posts/show.html.erb
|
549
564
|
- test/dummy/app/views/posts/edit.html.erb
|
550
565
|
- test/dummy/app/views/layouts/application.html.erb
|
551
|
-
- test/dummy/
|
552
|
-
- test/
|
553
|
-
- test/
|
554
|
-
- test/
|
555
|
-
- test/
|
556
|
-
- test/
|
557
|
-
- test/
|
558
|
-
- test/models/utils_test.rb
|
559
|
-
- test/models/attachment_file_test.rb
|
566
|
+
- test/dummy/app/helpers/application_helper.rb
|
567
|
+
- test/dummy/app/helpers/posts_helper.rb
|
568
|
+
- test/dummy/public/422.html
|
569
|
+
- test/dummy/public/favicon.ico
|
570
|
+
- test/dummy/public/404.html
|
571
|
+
- test/dummy/public/500.html
|
572
|
+
- test/dummy/script/rails
|
560
573
|
- test/functional/posts_controller_test.rb
|
561
|
-
- test/generators/install_generator_test.rb
|
562
|
-
- test/support/helpers.rb
|
563
574
|
- test/support/routes.txt
|
575
|
+
- test/support/helpers.rb
|
576
|
+
- test/support/raw_post.rb
|
564
577
|
- test/support/integration_case.rb
|
565
578
|
- test/support/controller_hooks.rb
|
566
|
-
- test/
|
567
|
-
- test/
|
568
|
-
- test/
|
579
|
+
- test/controllers/pictures_controller_test.rb
|
580
|
+
- test/controllers/attachment_files_controller_test.rb
|
581
|
+
- test/ckeditor_test.rb
|
582
|
+
- test/generators/install_generator_test.rb
|