dgw_gallery 0.2.3 → 0.2.7

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: 94137555143636be3062788ff0ea831ab8860c6fef232d24b360db77a964d1ea
4
- data.tar.gz: 3ccb8be398fc9c94ff90b180194f2eab6addf80c1317d918a2f2ba03ac302d90
3
+ metadata.gz: 397c88e72908ae2a71b0433fd0e8aaacfedd3961f84030d5003d05b852cf5198
4
+ data.tar.gz: 30dcc858eed28478e575f23c6c8e1aaa75c27e8b2176b94f9810175a13fe14bd
5
5
  SHA512:
6
- metadata.gz: e37e12def4d0a6f6ab9f820a3da38d98c1d8373740cd889efb4567b91b711f59238e1c05e55706ac9c5f546004e37afde4dd13baf6ded8905ba500d6ecf82d6f
7
- data.tar.gz: 293b3ed9e50dbbdec210327c058e56ff08f3fc3aa4189cd96491225e6f99e1a88c56319074ac1cfce3071cef0b66e308f55af1581512edd760339d3765e57111
6
+ metadata.gz: 2c743a6565ea9ac2eecc067a3a47a07818af8dcce645008b1776e06bd87447c66c5bc49aa37dcab35d969b6219f0bc23ee34ca08f761622c286b08b96bcda8cb
7
+ data.tar.gz: 687ac7ebe6e1592e3d3db309c4f7988df0f061d19c8fe5e3546c4400f77b2680cd41a3dd3bcde479adbc1788b9e64c2499b6c58569bb05c16baf4d886ffe0913
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,53 @@ 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
+ 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.
41
+ ```html
42
+ <head>
43
+ ...
44
+ ...
45
+ <meta name="turbolinks-visit-control" content="reload">
46
+ </head>
47
+ ```
48
+
49
+ ## Usage
50
+ #### To embed the carousel on your page you will use code similar to this
51
+ ```ruby
52
+ ### in your action where you want to display gallery
53
+ ### replace 'id' with the id of gallery you want
54
+ @gallery = Gallery.find(id)
55
+ ```
56
+
57
+ ```erb
58
+ <!-- Code in view.html.erb -->
59
+ <div class="row mt-2">
60
+ <div class="card card-body border-radius-xl col-12 text-black shadow-lg" id="galleryCodeSection">
61
+ <div class="row justify-content-center align-items-evenly">
62
+ <div class="col-5 bg-light rounded mx-5 h-100">
63
+ <div class="card-header mt-3 border-radius-xl bg-transparent position-relative z-index-2 blur-shadow-image dark-shadow">
64
+ <%= render 'gallery/carousel' %>
65
+ </div>
66
+ </div>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ ```
71
+
72
+ Customizations can be made in the galler/_carousel.html.erb view if necessary
73
+
74
+
24
75
  ## Contributing
25
- Contribution directions go here.
76
+ If you wish to contribute submit a pull request and detail your changes and comment them in the code as well.
26
77
 
27
78
  ## License
28
79
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
80
+