attributes_for 0.1.0 → 0.1.1
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/CHANGELOG.md +5 -0
- data/README.md +8 -0
- data/app/helpers/attributes_for/attributes_for_helper.rb +1 -1
- data/lib/attributes_for/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 633bf6456c48d8b75050959f4f0786b85ac02bd9
|
|
4
|
+
data.tar.gz: 76ff6f4065a1b89f808d4e2addd44ae100c3b9ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 713784bbaecc27c3e47ce57d5cbf5572e87e26b595ff1c6f64a9255000349ca98cb2bc7e83240bcf1c93de30b8f8ec4dbaec7e6dee2ef8013d9513ce20c0f1d4
|
|
7
|
+
data.tar.gz: bf7757d513774c5ba0d826f59d71ab96ebd1a36af84bb9676c7c12ca80bfc5f2453912e7ccb71580fec43752d56e9aa0f064d573d65769cc7ecacb615be23db7
|
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
|
@@ -42,6 +42,14 @@ strings can also be presented using the `string` method.
|
|
|
42
42
|
</ul>
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
+
## Options
|
|
46
|
+
|
|
47
|
+
Available options:
|
|
48
|
+
|
|
49
|
+
* __:label__ - Disables label if set to false
|
|
50
|
+
* __:css__ - Override element's CSS
|
|
51
|
+
* __:id__ - Set element's ID
|
|
52
|
+
|
|
45
53
|
## Development
|
|
46
54
|
|
|
47
55
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: attributes_for
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ole J. Rosendahl
|
|
@@ -90,6 +90,7 @@ files:
|
|
|
90
90
|
- ".gitignore"
|
|
91
91
|
- ".rspec"
|
|
92
92
|
- ".travis.yml"
|
|
93
|
+
- CHANGELOG.md
|
|
93
94
|
- CODE_OF_CONDUCT.md
|
|
94
95
|
- Gemfile
|
|
95
96
|
- LICENSE.txt
|