dgw_gallery 0.2.2 → 0.2.6

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
  SHA256:
3
- metadata.gz: b2a9e6ccfb4a41a48e21c7a04d990cdd0a080329e0a035ffd8ebc12567b54632
4
- data.tar.gz: bf6d2ff230d11f1a8afd0ae50d9d9c396bd28ca1564102e3b39191ae4e4f0ab3
3
+ metadata.gz: d688daa5b376cf3feea8c2596dbf2a3e812ada41d8751a0c2f28c103fe6a92ca
4
+ data.tar.gz: fbae17acdc077743da55dc1c86260f08b4f3a1f8e0fc68e0131297d8c0a9c0f1
5
5
  SHA512:
6
- metadata.gz: bd2ebc36e7461f06f560e16f21ae12c71391e7ef5bb56d9464754f1301d37b7b9a874ebe27a68f5f2783de72938dd378d109ec26b88a8d6a9414e1efef95d42c
7
- data.tar.gz: edb935cf502fc451ace939c7e8701ff8dc4b1b5b3579d05e6be0a28d0dd29b250cff28a3d1d86ac6b3b27415ca6c82ac11c83dd0c55b277a00b4da2b0545c3cc
6
+ metadata.gz: a19c36c5e55942df498cd4383c9c78fed04a78ca4712ef6a313a8a8e02e29e9ac4c8566ae73103eda5591076fb671ecc457378d83317fbdae44c66199fca65ee
7
+ data.tar.gz: 33bb846a9e3815c18cd51732ba17999e04b36464116d09b5cd361187f13eb0aef3d70d19bf01af218ec163e87016b86e64850befa46a10cf91fba1746fc6b8f0
data/README.md CHANGED
@@ -1,8 +1,9 @@
1
1
  # DgwGallery
2
- Short description and motivation.
2
+ 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.
3
3
 
4
4
  ## Usage
5
- How to use my plugin.
5
+ Install the gem and migrations and point your browser to /gallery on your site.
6
+
6
7
 
7
8
  ## Installation
8
9
  Add this line to your application's Gemfile:
@@ -11,6 +12,12 @@ Add this line to your application's Gemfile:
11
12
  gem 'dgw_gallery'
12
13
  ```
13
14
 
15
+ And then copy and install migrations from dgw_gallery_engine to application:
16
+ ```bash
17
+ $ rails app:dgw_gallery_engine:install:migrations
18
+ $ rails db:migrate
19
+ ```
20
+
14
21
  And then execute:
15
22
  ```bash
16
23
  $ bundle
@@ -21,8 +28,52 @@ Or install it yourself as:
21
28
  $ gem install dgw_gallery
22
29
  ```
23
30
 
31
+
32
+ If you would like to modify the views or override the controller you can install either or both.
33
+ Execute:
34
+ ```bash
35
+ $ rails dgw_gallery:install:views # Install Gallery Views
36
+ $ rails dgw_gallery:install:controller # Install Gallery Controller
37
+ $ rails dgw_gallery:install:css # Install Gallery CSS
38
+ ```
39
+
40
+ ## Usage
41
+ #### To embed the carousel on your page you will use code similar to this
42
+ ```ruby
43
+ ### in your action where you want to display gallery
44
+ ### replace 'id' with the id of gallery you want
45
+ @gallery = Gallery.find(id)
46
+ ```
47
+
48
+ ```erb
49
+ <!-- Code in view.html.erb -->
50
+ <!-- Start Embeded Gallery Area -->
51
+ <% if !@gallery.gallery_images.blank? %>
52
+ <div id="dgwGalleryIndicators" class="carousel slide" data-bs-ride="carousel" data-bs-interval="5000">
53
+ <div class="carousel-inner">
54
+ <% @gallery.gallery_images.each_with_index do |gi, idx| %>
55
+ <div data-bs-interval="5000" class="carousel-item <%= (idx == 0)? "active" : nil %>">
56
+ <figure>
57
+ <%= image_tag gi.image.variant(resize_to_fill: [900, 500]), class: "img-fluid border-radius-xl" %>
58
+ </figure>
59
+ <figcaption class="blockquote-footer text-center">
60
+ <%= gi.caption %>
61
+ </figcaption>
62
+ </div>
63
+ <% end %>
64
+ </div>
65
+ </div>
66
+ <% else %>
67
+ <div class="col-12 text-center">
68
+ There Are No Slides to Display. Please add some.
69
+ </div>
70
+ <% end %>
71
+ <!-- End Embeded Gallery Area -->
72
+ ```
73
+
24
74
  ## Contributing
25
- Contribution directions go here.
75
+ If you wish to contribute submit a pull request and detail your changes and comment them in the code as well.
26
76
 
27
77
  ## License
28
78
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
79
+