coupdoeil 1.0.0.pre.rc1 → 1.0.0

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -1
  3. data/lib/coupdoeil/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 749c88b1916520795413525b0e227eda528bb1dfa6c5800a814fa443d4659f56
4
- data.tar.gz: 7f7408994914a554f8b313ae3bf0109702fa50ab7bdfdfdf16f4e0f492785cc4
3
+ metadata.gz: 76c263c22c11fb3ffe7fa96da1d9a3dcfe12dd209b57b999ffc3eb0623c6babf
4
+ data.tar.gz: 61ba2b5faee4080f7db503c7ae7869015a091970e10d6587f7fc3123a07da00f
5
5
  SHA512:
6
- metadata.gz: cc6d4fd2641cc97fab5eca40370711c3615bd2cae963898ebf8b64e12d41b10566820a6bd8e4a113d0aa06e6b3ce4df03dd73d7ebfccc3ca4677aa4d10b44c12
7
- data.tar.gz: 7127f63f433508b8d32e69775f5cc6419eeb94d3ccc03217e9a91bd7529c8262e3f8ee73bc5286a9b5d540c98f7e56a319462be38106bbd39279de95e459af39
6
+ metadata.gz: f94fb2662bd3b9915860cba9d13bc1a209e8e670820ffb1d4294b1ba0808103df441e3a75ed064e0b22676963ee3fa60aa902c03a0d6073f2981ed026435700c
7
+ data.tar.gz: ba5e0d524441b0199bf8f9175a01efa6f8c9fe99cd6f7992f5ce4444b878eed62bad7056f63000ff8be9a04b0b24fd9531e4d37ae72208bdecffab37b15e929a
data/README.md CHANGED
@@ -6,6 +6,8 @@ A framework to easily handle popovers.
6
6
  ## Documentation
7
7
  See [coupdoeil.org](https://coupdoeil.org) for full documentation.
8
8
 
9
+ There is also an [introduction article I wrote for the first release.](https://dev.to/pagehey/coupdoeil-ruby-gem-174a)
10
+
9
11
  ## Overview
10
12
 
11
13
  ### What is a Coupdoeil::Popover?
@@ -23,7 +25,12 @@ Click to toggle examples
23
25
  <summary><i>A form in a popup</i></summary>
24
26
  <img src="https://coupdoeil.org/overview-example-2.gif" alt="popover example" />
25
27
  </details>
26
- [See more use-cases](https://coupdoeil.org/case-studies.html)
28
+ <details>
29
+ <summary><i>A side menu with sub items</i></summary>
30
+ <img src="https://coupdoeil.org/overview-example-3.gif" alt="side menu with sub items popover example" />
31
+ </details>
32
+
33
+ [See more use-cases in documentation](https://coupdoeil.org/case-studies.html)
27
34
 
28
35
  The current implementation takes inspiration from both ViewComponent and ActionMailer, to make it as easy as possible to use while offering a wide range of possibilities.
29
36
 
@@ -57,6 +64,8 @@ Which is embedded by doing so:
57
64
  </div>
58
65
  ```
59
66
 
67
+
68
+
60
69
  ### Why use Coupdoeil popovers?
61
70
 
62
71
  The concept of 'quick look' allowed by popovers can really improve UX by avoiding the need to navigate to another page and back again just to check summary for a resource.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Coupdoeil
4
- VERSION = "1.0.0-rc1"
4
+ VERSION = "1.0.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coupdoeil
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre.rc1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - PageHey