materialize_timepicker_rails 0.1.1.1 → 0.1.1.2
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 +13 -8
- data/lib/materialize_timepicker_rails/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 653316c070c2e6ace802dfda2601c6bd19d501f5
|
4
|
+
data.tar.gz: 72041ee0c946f5fff4171e6316c7e6615f093912
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4066183f8c1cb60bb74c483b9db2fc2e089f866346a70d24efd5360696a276460e32bedbb46d145cbc652524e278d9293dc2e49e811974b05afc22872d66db1a
|
7
|
+
data.tar.gz: b8bb84daedebcbe85d9b649ef3426bc868bcf1defe4cf9c5d80472c0842347ea0c08c237ba2845cf5bd9872823c666f4dabc64dd4b640e31cc1a87f9016d7689
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Materialize Timepicker Rails is a simple drop in gem to provide a time picker form field for your rails 4+ App utilizing the Materialize CSS front end design framework http://materializecss.com/ - for more info.
|
4
4
|
|
5
|
-
This gem is still in active development please check back or star this repo for updates.
|
5
|
+
This gem is still in active development please check back or star this repo for updates.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -22,17 +22,22 @@ Or install it yourself as:
|
|
22
22
|
|
23
23
|
## Usage
|
24
24
|
|
25
|
-
|
25
|
+
After installing and running ```bundle install``` add the following:
|
26
26
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
27
|
+
app/assets/javascripts/application.js
|
28
|
+
Make sure this is loaded after jQuery and Materializecss
|
29
|
+
```ruby
|
30
|
+
//= require materialize_datepicker
|
31
|
+
```
|
32
|
+
app/assets/stylesheets/application.scss
|
33
|
+
after materialize
|
34
|
+
```ruby
|
35
|
+
*= require materialize_datepicker
|
36
|
+
```
|
32
37
|
|
33
38
|
## Contributing
|
34
39
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
40
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/swilson223/materialize_timepicker_rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
41
|
|
37
42
|
|
38
43
|
## License
|