🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

flex-slider-rails

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flex-slider-rails

2.7.0
Rubygems
Version published
Maintainers
1
Created
Source

flex-slider-rails

Gem Version

flex-slider-rails gem is the integration of flexslider javascript library for your Rails 4 and Rails 5 application.

FlexSlider 2 - The best responsive slider. Period. source: https://github.com/woocommerce/FlexSlider

Ruby gems url: https://rubygems.org/gems/flex-slider-rails

Installation

Add this line to your application's Gemfile:

gem 'flex-slider-rails'

And then execute:

$ bundle

Or install it yourself as:

$ gem install flex-slider-rails

Now you need to edit your app/assets/javascripts/application.css file and add the following line:

*= require flexslider

Now you need to edit your app/assets/javascripts/application.js file and add the following line:

//= require jquery.flexslider

For minified

//= require jquery.flexslider-min    

Usage

Here is the example working code to test with your Rails application.

Add this sample code to your app/assets/javascripts/application.js file

  $(document).ready(function(){ 
    $('.flexslider').flexslider();
  });

Note: Here i am using gem 'jquery-turbolinks' for using the jquery $(document).ready function

Using with Turbolinks5 and Rails5 only

  $(document).on("turbolinks:load", function() {
    $('.flexslider').flexslider();
  });

Add this sample code to your template file like index.html.erb

<!-- Place somewhere in the <body> of your page -->
<div class="flexslider">
  <ul class="slides">
    <li>
      <img src="http://via.placeholder.com/350x150" />
    </li>
    <li>
      <img src="http://via.placeholder.com/350x150" />
    </li>
    <li>
      <img src="http://via.placeholder.com/350x150" />
    </li>
  </ul>
</div>

Full documentation

Read the FlexSlider documentation here https://woocommerce.com/flexslider/

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake false to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/sadiqmmm/flex-slider-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

FAQs

Package last updated on 14 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

OSZAR »