nunify 0.5.4 → 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.
- checksums.yaml +4 -4
- data/README.md +8 -3
- data/lib/nunify/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: 39e987143ece47e3b1175919389ad06ef2dc7ea8
|
|
4
|
+
data.tar.gz: 98787eee3ff307f1a85600d5856bd4ff92702308
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 343435bd2e2db618524be94281fa1b1c96d30b3c461849859dafeca123d12244c6ec07b4f700f8b0d9aa90d1793338cdc3a764c3193e917d448fc38c4bee0ca0
|
|
7
|
+
data.tar.gz: 8d0decdb4466ad0c359a4d169cccad081b0dd84272ef8288030e3a133cfa6533d047f1c987037e621602b7a4338e6d99bbb17043e22fb66286374be839a9ccf1
|
data/README.md
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
# Nunify
|
|
2
|
-
=================================
|
|
1
|
+
# Nunify - Unify template for Neember
|
|
3
2
|
|
|
4
3
|
###Installation
|
|
5
4
|
|
|
@@ -10,7 +9,7 @@ gem install 'nunify'
|
|
|
10
9
|
or add this to your `Gemfile`
|
|
11
10
|
|
|
12
11
|
```
|
|
13
|
-
gem 'unify', '~>
|
|
12
|
+
gem 'unify', '~> 1.0'
|
|
14
13
|
```
|
|
15
14
|
|
|
16
15
|
###Usage
|
|
@@ -34,5 +33,11 @@ Nunify uses `default` theme by default. To use another theme, add this to your `
|
|
|
34
33
|
@import 'nunify/themes/[your_theme_name]'
|
|
35
34
|
```
|
|
36
35
|
|
|
36
|
+
As Rails won't automatically include filtered out assets, you may need to add this to your application.rb
|
|
37
|
+
|
|
38
|
+
```ruby
|
|
39
|
+
config.assets.precompile += %w{*.png *.jpg *.gif}
|
|
40
|
+
```
|
|
41
|
+
|
|
37
42
|
That's it. Enjoy!!!
|
|
38
43
|
|
data/lib/nunify/version.rb
CHANGED