jquery-slick-rails 1.5.9 → 1.5.9.1

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.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +15 -3
  3. data/lib/jquery-slick-rails/version.rb +1 -1
  4. data/test/dummy/Rakefile +7 -0
  5. data/test/dummy/config.ru +4 -0
  6. data/test/dummy/config/application.rb +65 -0
  7. data/test/dummy/config/boot.rb +10 -0
  8. data/test/dummy/config/environment.rb +5 -0
  9. data/test/dummy/config/environments/development.rb +31 -0
  10. data/test/dummy/config/environments/production.rb +64 -0
  11. data/test/dummy/config/environments/test.rb +35 -0
  12. data/test/dummy/config/initializers/secret_token.rb +7 -0
  13. data/test/dummy/config/initializers/session_store.rb +8 -0
  14. data/test/dummy/config/initializers/wrap_parameters.rb +10 -0
  15. data/test/dummy/config/locales/en.yml +4 -0
  16. data/test/dummy/config/routes.rb +2 -0
  17. data/test/dummy/log/test.log +27 -0
  18. data/test/dummy/tmp/cache/assets/C51/AA0/sprockets%2F6171c988113f5a2dd809030065d743f8 +0 -0
  19. data/test/dummy/tmp/cache/assets/CAA/480/sprockets%2F4d604d11576427ca96bd5781a30d2b67 +0 -0
  20. data/test/dummy/tmp/cache/assets/CB1/B50/sprockets%2F2057ee291754f451d5eeee05560a2269 +0 -0
  21. data/test/dummy/tmp/cache/assets/CB6/CB0/sprockets%2F6d76a8b1e94251b04e9741671185ac8e +0 -0
  22. data/test/dummy/tmp/cache/assets/CD2/640/sprockets%2F9c020785fa2c7a58a11a6d13283d36d3 +0 -0
  23. data/test/dummy/tmp/cache/assets/CE6/3B0/sprockets%2Fea8f9b32184816c5a748e9450d11e81c +0 -0
  24. data/test/dummy/tmp/cache/assets/D17/3E0/sprockets%2F5a61899d165ff31fd3b3ca1f531971e8 +0 -0
  25. data/test/dummy/tmp/cache/assets/D3A/870/sprockets%2F52e808d22df40c648aa32dd4d77a58b2 +0 -0
  26. data/test/dummy/tmp/cache/assets/D70/480/sprockets%2Fae2a424972fb7e325d475870edb0def4 +0 -0
  27. data/test/dummy/tmp/cache/assets/D97/060/sprockets%2Fa53e29bea6e7282bf2ba7d9d043f0e05 +0 -0
  28. data/test/dummy/tmp/cache/assets/DA8/4A0/sprockets%2Fedbdc48ff595febd15184099271cb45a +0 -0
  29. data/test/integration/navigation_test.rb +28 -0
  30. data/test/jquery-slick-rails_test.rb +7 -0
  31. data/test/test_helper.rb +7 -0
  32. metadata +86 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 386aa5168d6fc9c4e44fb1cde1a0a4afd57ab40e
4
- data.tar.gz: f4930b9e0f2dbba5bd5f48d76da5dd3db3b61204
3
+ metadata.gz: c1a195d0fd613ca2030a176ca5845cc35a7e095b
4
+ data.tar.gz: f6ef8127e21521088339010f29b94cb51512b2d3
5
5
  SHA512:
6
- metadata.gz: 4bb38664d174a24cc8e39da89c10e67f4877476998e4d55724d21406d3a928166f56a9e9b0a1343c7ed4f5d24a85505d3a4f6eaf929c8a2b2d2886bb25fad59f
7
- data.tar.gz: 056464c8b55cbc86e134dce735fc527fa7d3f6663ce4bd37649f95ccbe95a95986f63d998bec12f7b87d7714cefe709b19118a31c758e28b12eb7d66e59fbd98
6
+ metadata.gz: b7fe5ff9df2ce71791a0c630c8eede1d69f720497306fe8d110c701445f497dab566ff5643199fb9202417df3283d8df70c764300df77a1abbd101b903777c03
7
+ data.tar.gz: d1a2f038d5ff88898532a7343ec598c3062caed8792ad92af964b54d93858e04a61fbdc4809cccc08cdb6586e5908cd22c40b6430eb7e131326032955102594a
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # jQuerySlickRails
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/jquery-slick-rails.svg)](http://badge.fury.io/rb/jquery-slick-rails)
4
+ [![Build Status](https://travis-ci.org/bodrovis/jquery-slick-rails.svg?branch=master)](https://travis-ci.org/bodrovis/jquery-slick-rails)
4
5
 
5
6
  A ruby gem that uses the Rails asset pipeline to include the jQuery Slick plugin by Ken Wheeler
6
7
  (https://kenwheeler.github.io/slick/).
@@ -60,13 +61,24 @@ into `application.css`.
60
61
 
61
62
  You may use [this](https://github.com/bodrovis/jquery-slick-rails-demo) simple Rails app as an example.
62
63
 
64
+ ## Testing
65
+
66
+ Run
67
+
68
+ $ bundle install
69
+
70
+ and then
71
+
72
+ $ rake test
73
+
63
74
  ## Contributing
64
75
 
65
76
  1. Fork it
66
77
  2. Create your feature branch (`git checkout -b my-new-feature`)
67
- 3. Commit your changes (`git commit -am 'Added some feature'`)
68
- 4. Push to the branch (`git push origin my-new-feature`)
69
- 5. Create new Pull Request
78
+ 3. Make sure tests are passing
79
+ 4. Commit your changes (`git commit -am 'Added some feature'`)
80
+ 5. Push to the branch (`git push origin my-new-feature`)
81
+ 6. Create new Pull Request
70
82
 
71
83
  ## License
72
84
 
@@ -1,3 +1,3 @@
1
1
  module JquerySlickRails
2
- VERSION = "1.5.9"
2
+ VERSION = "1.5.9.1"
3
3
  end
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env rake
2
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
3
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
+
5
+ require File.expand_path('../config/application', __FILE__)
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,65 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ # Pick the frameworks you want:
4
+ # require "active_record/railtie"
5
+ # require "action_controller/railtie"
6
+ require "action_mailer/railtie"
7
+ # require "active_resource/railtie"
8
+ require "sprockets/railtie"
9
+ # require "rails/test_unit/railtie"
10
+
11
+ Bundler.require
12
+ require "jquery-slick-rails"
13
+
14
+ module Dummy
15
+ class Application < Rails::Application
16
+ # Settings in config/environments/* take precedence over those specified here.
17
+ # Application configuration should go into files in config/initializers
18
+ # -- all .rb files in that directory are automatically loaded.
19
+
20
+ # Custom directories with classes and modules you want to be autoloadable.
21
+ # config.autoload_paths += %W(#{config.root}/extras)
22
+
23
+ # Only load the plugins named here, in the order given (default is alphabetical).
24
+ # :all can be used as a placeholder for all plugins not explicitly named.
25
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
26
+
27
+ # Activate observers that should always be running.
28
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
29
+
30
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
31
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
32
+ # config.time_zone = 'Central Time (US & Canada)'
33
+
34
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
35
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
36
+ # config.i18n.default_locale = :de
37
+
38
+ # Configure the default encoding used in templates for Ruby 1.9.
39
+ config.encoding = "utf-8"
40
+
41
+ # Configure sensitive parameters which will be filtered from the log file.
42
+ config.filter_parameters += [:password]
43
+
44
+ # Enable escaping HTML in JSON.
45
+ config.active_support.escape_html_entities_in_json = true
46
+
47
+ # Use SQL instead of Active Record's schema dumper when creating the database.
48
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
49
+ # like if you have constraints or database-specific column types
50
+ # config.active_record.schema_format = :sql
51
+
52
+ # Enforce whitelist mode for mass assignment.
53
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
54
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
55
+ # parameters by using an attr_accessible or attr_protected declaration.
56
+ # config.active_record.whitelist_attributes = true
57
+
58
+ # Enable the asset pipeline
59
+ config.assets.enabled = true
60
+
61
+ # Version of your assets, change this if you want to expire all your assets
62
+ config.assets.version = '1.0'
63
+ end
64
+ end
65
+
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,31 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+
26
+ # Do not compress assets
27
+ config.assets.compress = false
28
+
29
+ # Expands the lines which load the assets
30
+ config.assets.debug = true
31
+ end
@@ -0,0 +1,64 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to nil and saved in location specified by config.assets.prefix
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ end
@@ -0,0 +1,35 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+
33
+ # Print deprecation notices to the stderr
34
+ config.active_support.deprecation = :stderr
35
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '34532df3e2sdfsert2342134gtuyhrjuhqa4tr23q3yhgdrhrt6ji56'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
@@ -0,0 +1,4 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
@@ -0,0 +1,2 @@
1
+ Rails.application.routes.draw do
2
+ end
@@ -0,0 +1,27 @@
1
+ Started GET "/assets/jquery.slick.js" for 127.0.0.1 at 2015-12-02 15:47:03 +0300
2
+ Compiled jquery.slick.js (1ms) (pid 1632)
3
+ Served asset /jquery.slick.js - 200 OK (31ms)
4
+ Started GET "/assets/jquery.slick.js" for 127.0.0.1 at 2015-12-02 15:47:03 +0300
5
+ Served asset /jquery.slick.js - 200 OK (0ms)
6
+ Started GET "/assets/jquery.slick.js" for 127.0.0.1 at 2015-12-02 15:48:59 +0300
7
+ Served asset /jquery.slick.js - 200 OK (27ms)
8
+ Started GET "/assets/jquery.slick.js" for 127.0.0.1 at 2015-12-02 15:48:59 +0300
9
+ Served asset /jquery.slick.js - 200 OK (0ms)
10
+ Started GET "/assets/slick.css" for 127.0.0.1 at 2015-12-02 15:49:38 +0300
11
+ Compiled slick.css (0ms) (pid 5548)
12
+ Served asset /slick.css - 200 OK (42ms)
13
+ Started GET "/assets/jquery.slick.js" for 127.0.0.1 at 2015-12-02 15:49:38 +0300
14
+ Served asset /jquery.slick.js - 200 OK (3ms)
15
+ Started GET "/assets/jquery.slick.js" for 127.0.0.1 at 2015-12-02 15:49:38 +0300
16
+ Served asset /jquery.slick.js - 200 OK (0ms)
17
+ Started GET "/assets/slick-theme.css" for 127.0.0.1 at 2015-12-02 15:50:13 +0300
18
+ Compiled slick-theme.css (2ms) (pid 1252)
19
+ Served asset /slick-theme.css - 200 OK (26ms)
20
+ Started GET "/assets/slick.css" for 127.0.0.1 at 2015-12-02 15:50:13 +0300
21
+ Served asset /slick.css - 200 OK (9ms)
22
+ Started GET "/assets/slick.eot" for 127.0.0.1 at 2015-12-02 15:50:13 +0300
23
+ Served asset /slick.eot - 200 OK (7ms)
24
+ Started GET "/assets/jquery.slick.js" for 127.0.0.1 at 2015-12-02 15:50:13 +0300
25
+ Served asset /jquery.slick.js - 200 OK (3ms)
26
+ Started GET "/assets/jquery.slick.js" for 127.0.0.1 at 2015-12-02 15:50:13 +0300
27
+ Served asset /jquery.slick.js - 200 OK (0ms)
@@ -0,0 +1,28 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ test 'can access slick.js' do
5
+ get '/assets/jquery.slick.js'
6
+ assert_response :success
7
+ end
8
+
9
+ test 'can access slick.css' do
10
+ get '/assets/slick.css'
11
+ assert_response :success
12
+ end
13
+
14
+ test 'can access slick-theme.css' do
15
+ get '/assets/slick-theme.css'
16
+ assert_response :success
17
+ end
18
+
19
+ test 'can access slick.eot' do
20
+ get '/assets/slick.eot'
21
+ assert_response :success
22
+ end
23
+
24
+ test 'slick response is for the expected version' do
25
+ get '/assets/jquery.slick.js'
26
+ assert_match(/Version: 1\.5\.9/, @response.body)
27
+ end
28
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class JquerySlickRailsTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, JquerySlickRails::Rails
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jquery-slick-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.9
4
+ version: 1.5.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Bodrov
@@ -24,6 +24,34 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 3.2.12
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 3.2.12
41
+ - !ruby/object:Gem::Dependency
42
+ name: test-unit
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
27
55
  description: Integrates Slick carousel, a jQuery plugin by Ken Wheeler, into your
28
56
  Rails app.
29
57
  email:
@@ -44,6 +72,34 @@ files:
44
72
  - app/assets/stylesheets/slick.css
45
73
  - lib/jquery-slick-rails.rb
46
74
  - lib/jquery-slick-rails/version.rb
75
+ - test/dummy/Rakefile
76
+ - test/dummy/config.ru
77
+ - test/dummy/config/application.rb
78
+ - test/dummy/config/boot.rb
79
+ - test/dummy/config/environment.rb
80
+ - test/dummy/config/environments/development.rb
81
+ - test/dummy/config/environments/production.rb
82
+ - test/dummy/config/environments/test.rb
83
+ - test/dummy/config/initializers/secret_token.rb
84
+ - test/dummy/config/initializers/session_store.rb
85
+ - test/dummy/config/initializers/wrap_parameters.rb
86
+ - test/dummy/config/locales/en.yml
87
+ - test/dummy/config/routes.rb
88
+ - test/dummy/log/test.log
89
+ - test/dummy/tmp/cache/assets/C51/AA0/sprockets%2F6171c988113f5a2dd809030065d743f8
90
+ - test/dummy/tmp/cache/assets/CAA/480/sprockets%2F4d604d11576427ca96bd5781a30d2b67
91
+ - test/dummy/tmp/cache/assets/CB1/B50/sprockets%2F2057ee291754f451d5eeee05560a2269
92
+ - test/dummy/tmp/cache/assets/CB6/CB0/sprockets%2F6d76a8b1e94251b04e9741671185ac8e
93
+ - test/dummy/tmp/cache/assets/CD2/640/sprockets%2F9c020785fa2c7a58a11a6d13283d36d3
94
+ - test/dummy/tmp/cache/assets/CE6/3B0/sprockets%2Fea8f9b32184816c5a748e9450d11e81c
95
+ - test/dummy/tmp/cache/assets/D17/3E0/sprockets%2F5a61899d165ff31fd3b3ca1f531971e8
96
+ - test/dummy/tmp/cache/assets/D3A/870/sprockets%2F52e808d22df40c648aa32dd4d77a58b2
97
+ - test/dummy/tmp/cache/assets/D70/480/sprockets%2Fae2a424972fb7e325d475870edb0def4
98
+ - test/dummy/tmp/cache/assets/D97/060/sprockets%2Fa53e29bea6e7282bf2ba7d9d043f0e05
99
+ - test/dummy/tmp/cache/assets/DA8/4A0/sprockets%2Fedbdc48ff595febd15184099271cb45a
100
+ - test/integration/navigation_test.rb
101
+ - test/jquery-slick-rails_test.rb
102
+ - test/test_helper.rb
47
103
  homepage: https://github.com/bodrovis/jquery-slick-rails
48
104
  licenses:
49
105
  - MIT
@@ -68,5 +124,33 @@ rubygems_version: 2.5.0
68
124
  signing_key:
69
125
  specification_version: 4
70
126
  summary: Integrates Slick carousel into Rails app.
71
- test_files: []
127
+ test_files:
128
+ - test/dummy/config/application.rb
129
+ - test/dummy/config/boot.rb
130
+ - test/dummy/config/environment.rb
131
+ - test/dummy/config/environments/development.rb
132
+ - test/dummy/config/environments/production.rb
133
+ - test/dummy/config/environments/test.rb
134
+ - test/dummy/config/initializers/secret_token.rb
135
+ - test/dummy/config/initializers/session_store.rb
136
+ - test/dummy/config/initializers/wrap_parameters.rb
137
+ - test/dummy/config/locales/en.yml
138
+ - test/dummy/config/routes.rb
139
+ - test/dummy/config.ru
140
+ - test/dummy/log/test.log
141
+ - test/dummy/Rakefile
142
+ - test/dummy/tmp/cache/assets/C51/AA0/sprockets%2F6171c988113f5a2dd809030065d743f8
143
+ - test/dummy/tmp/cache/assets/CAA/480/sprockets%2F4d604d11576427ca96bd5781a30d2b67
144
+ - test/dummy/tmp/cache/assets/CB1/B50/sprockets%2F2057ee291754f451d5eeee05560a2269
145
+ - test/dummy/tmp/cache/assets/CB6/CB0/sprockets%2F6d76a8b1e94251b04e9741671185ac8e
146
+ - test/dummy/tmp/cache/assets/CD2/640/sprockets%2F9c020785fa2c7a58a11a6d13283d36d3
147
+ - test/dummy/tmp/cache/assets/CE6/3B0/sprockets%2Fea8f9b32184816c5a748e9450d11e81c
148
+ - test/dummy/tmp/cache/assets/D17/3E0/sprockets%2F5a61899d165ff31fd3b3ca1f531971e8
149
+ - test/dummy/tmp/cache/assets/D3A/870/sprockets%2F52e808d22df40c648aa32dd4d77a58b2
150
+ - test/dummy/tmp/cache/assets/D70/480/sprockets%2Fae2a424972fb7e325d475870edb0def4
151
+ - test/dummy/tmp/cache/assets/D97/060/sprockets%2Fa53e29bea6e7282bf2ba7d9d043f0e05
152
+ - test/dummy/tmp/cache/assets/DA8/4A0/sprockets%2Fedbdc48ff595febd15184099271cb45a
153
+ - test/integration/navigation_test.rb
154
+ - test/jquery-slick-rails_test.rb
155
+ - test/test_helper.rb
72
156
  has_rdoc: