figstrap_rails 0.0.2 → 0.0.3
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/.gitignore +1 -0
- data/README.md +17 -1
- data/lib/figstrap_rails/version.rb +1 -1
- data/vendor/assets/stylesheets/src/fgs_auto_layout.scss +12 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 118e64a864c21a6223d1b8ecab5d7f8bd3b792d3c2f54b7783888f83c269b289
|
4
|
+
data.tar.gz: 24be6da50cbf868ac3d802e2740db548c2a9d5b7a7bc2f2d6307a90903fedb14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1def45084cb408ec9d02fa68e0d5dc0979ec025f4e7dbe70f07307508971e884d84b1cf04efe4d863133d0c84149be5721f3f9a2c942a7b3b5e739654ca6c74
|
7
|
+
data.tar.gz: e880e13452d6643a700f61d7356fe5277f689f1fea8c73901ab12ba7978d791e6ed0fea1f81e76823cbd0f8cfece08123df503c9a2704176ca87cbae1987a288
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Figstrap Rails
|
2
2
|
|
3
|
-
A small Gem wrapper for [FigStrap](
|
3
|
+
A small Gem wrapper for [FigStrap](https://github.com/bitesite/figstrap).
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -34,6 +34,22 @@ After checking out the repo, run `bin/setup` to install dependencies. You can al
|
|
34
34
|
|
35
35
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
36
36
|
|
37
|
+
## Publishing
|
38
|
+
|
39
|
+
1. Update the version number
|
40
|
+
|
41
|
+
2. Build the gem
|
42
|
+
|
43
|
+
```
|
44
|
+
gem build figstrap_rails.gemspec
|
45
|
+
```
|
46
|
+
|
47
|
+
3. Push the gem
|
48
|
+
|
49
|
+
```
|
50
|
+
gem push figstrap_rails-#.#.#.gem
|
51
|
+
```
|
52
|
+
|
37
53
|
## Contributing
|
38
54
|
|
39
55
|
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/figstrap_rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/figstrap_rails/blob/master/CODE_OF_CONDUCT.md).
|
@@ -17,6 +17,12 @@
|
|
17
17
|
|
18
18
|
/* FigStrap Auto Layout Vertical */
|
19
19
|
&.fgs-al-v {
|
20
|
+
&.fgs-al-g-6 {
|
21
|
+
> .fgs-ali {
|
22
|
+
margin: 6px 0;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
20
26
|
&.fgs-al-g-10 {
|
21
27
|
> .fgs-ali {
|
22
28
|
margin: 10px 0;
|
@@ -76,6 +82,12 @@
|
|
76
82
|
}
|
77
83
|
|
78
84
|
/* FigStrap Auto layout Gap (margin) */
|
85
|
+
&.fgs-al-g-6 {
|
86
|
+
> .fgs-ali {
|
87
|
+
margin: 0 6px;
|
88
|
+
}
|
89
|
+
}
|
90
|
+
|
79
91
|
&.fgs-al-g-10 {
|
80
92
|
> .fgs-ali {
|
81
93
|
margin: 0 10px;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: figstrap_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Casey Li
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|