volt-materialize 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4f98df8ea496023c5cc7fa82fc8313ca5abfbcfd
4
+ data.tar.gz: 04598011b66f11909a5e4968e197f6aec32a45d7
5
+ SHA512:
6
+ metadata.gz: 773f3da40500826e39c64e596764fef5effb1a132961facc8d836ca741ac866e7fd81743682139207fc8fed3dca8f10ddbafa37ae58670dd96ee33be91c9b583
7
+ data.tar.gz: 4de49be48f4d8cc4eb9cbbfa0bcbf7ba90967739954acd04911442c0522feb4334d060d0345a999fe3cd59eaa3081b91360f57b9cc0e8066f5480c1a41a61476
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .DS_Store
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in volt-bootstrap.gemspec
4
+ gemspec
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Volt::Bootstrap
2
+
3
+ Adds Materialize to your Volt app!
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'volt-materialze'
10
+
11
+ Add the bootstrap component to your application's `app/main/config/dependencies.rb`:
12
+
13
+ component 'materialze'
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ ## Usage
20
+
21
+ Now you can use Materializecss in your application's views. For more information on how to use it visit http://http://materializecss.com/
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/acapro/volt-bootstrap/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1