DgwGallery
This is a current work in progress so bear with us.) A simple gallery for ruby on rails sites that includes a layout for either a bootstrap carousel or responsive image page.
Usage
Install the gem and migrations and point your browser to /gallery on your site.
Installation
Add this line to your application's Gemfile:
gem 'dgw_gallery'
And then copy and install migrations from dgw_gallery_engine to application:
$ rails app:dgw_gallery_engine:install:migrations
$ rails db:migrate
And then execute:
$ bundle
Or install it yourself as:
$ gem install dgw_gallery
If you would like to modify the views or override the controller you can install either or both.
Execute:
$ rails dgw_gallery:install:views
$ rails dgw_gallery:install:controller
$ rails dgw_gallery:install:css
If you are using turbolinks and experiencing issues with the carousel not starting on initial page load, try adding the following line at the end of your head section either for your main app or for that specific page.
<head>
...
...
<meta name="turbolinks-visit-control" content="reload">
</head>
Usage
To embed the carousel on your page you will use code similar to this
@gallery = Gallery.find(id)
<!-- Code in view.html.erb -->
<div class="row mt-2">
<div class="card card-body border-radius-xl col-12 text-black shadow-lg" id="galleryCodeSection">
<div class="row justify-content-center align-items-evenly">
<div class="col-5 bg-light rounded mx-5 h-100">
<div class="card-header mt-3 border-radius-xl bg-transparent position-relative z-index-2 blur-shadow-image dark-shadow">
<%= render 'gallery/carousel' %>
</div>
</div>
</div>
</div>
</div>
Customizations can be made in the app/views/gallery/_carousel.html.erb view if necessary (after installing views)
Contributing
If you wish to contribute submit a pull request and detail your changes and comment them in the code as well.
License
The gem is available as open source under the terms of the MIT License.