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 +4 -4
- data/README.md +54 -3
- data/app/assets/stylesheets/dgw_gallery/dgw_gallery_style.css +89 -36624
- data/app/views/gallery/_form.html.erb +1 -1
- data/app/views/gallery/index.html.erb +7 -3
- data/app/views/gallery/manage.html.erb +26 -8
- data/app/views/gallery/new.html.erb +3 -0
- data/lib/dgw_gallery/version.rb +1 -1
- data/lib/tasks/dgw_gallery_tasks.rake +11 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d688daa5b376cf3feea8c2596dbf2a3e812ada41d8751a0c2f28c103fe6a92ca
|
4
|
+
data.tar.gz: fbae17acdc077743da55dc1c86260f08b4f3a1f8e0fc68e0131297d8c0a9c0f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a19c36c5e55942df498cd4383c9c78fed04a78ca4712ef6a313a8a8e02e29e9ac4c8566ae73103eda5591076fb671ecc457378d83317fbdae44c66199fca65ee
|
7
|
+
data.tar.gz: 33bb846a9e3815c18cd51732ba17999e04b36464116d09b5cd361187f13eb0aef3d70d19bf01af218ec163e87016b86e64850befa46a10cf91fba1746fc6b8f0
|
data/README.md
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
# DgwGallery
|
2
|
-
|
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
|
-
|
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
|
-
|
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
|
+
|