glebtv-ckeditor 4.4.7.3 → 4.4.7.4

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: 3141524644f3026771d5a6511ce8d7c219f5de18
4
- data.tar.gz: a2b8cc6a7c8bb528298fbfa1616e8ea5b094b44d
3
+ metadata.gz: 024992675102131c25b02ba1f7c3227401ca064d
4
+ data.tar.gz: cd770c9149038aa403771c1d38b2101ab1caf61b
5
5
  SHA512:
6
- metadata.gz: d0979ebc82fc0d5df4431d433914883c1116caadeef652faed85762443a72f4f002f636eed8f866af6aafc4f43a5040537c9530950c104ed82c381553729f08e
7
- data.tar.gz: ce45499e5f7eda0d00ace484d5e81c9349b63b9913d213f6cdfa0cb75e2bd382ae50dc5af198c578c14cf3cff1696b37aa64e9f916d6725081af05b597f6a711
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( ->(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
  }
@@ -1,4 +1,4 @@
1
1
  module Ckeditor
2
- VERSION="4.4.7.3".freeze
2
+ VERSION="4.4.7.4".freeze
3
3
  end
4
4
 
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.3
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-03-12 00:00:00.000000000 Z
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/dummy/Rakefile
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/public/422.html
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/locales/en.yml
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/routes.rb
534
- - test/dummy/test/fixtures/files/rails.png
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/script/rails
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/views/posts/new.html.erb
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/config.ru
552
- - test/controllers/attachment_files_controller_test.rb
553
- - test/controllers/pictures_controller_test.rb
554
- - test/orm/active_record.rb
555
- - test/orm/mongoid.rb
556
- - test/ckeditor_test.rb
557
- - test/models/picture_test.rb
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/support/raw_post.rb
567
- - test/integration/navigation_test.rb
568
- - test/test_helper.rb
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