nunify 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/README.md +38 -0
- data/vendor/assets/stylesheets/nunify/style.scss +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: bb03c6aea3f6cd2c5fa1cf548bcb3aa00498e71a
|
|
4
|
+
data.tar.gz: cb0dc4153e83e8e6a467aee1634e1f4a300f8fa4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0bac2423fdd381ad9a36f639756749e217891e07b96f59c8efac67c4231f916707420f0650f6479b55e118637e7cdf136db5a81b9292568014682bd38a2c88e8
|
|
7
|
+
data.tar.gz: 45cdbf47368d773c227d8f3abef53473679b12776ae7a583584f7e399a4e6a541bc224abe4ca4969148d9ac9c3e66f8722412d5f81c7dd2251c50f2a1e16b2c7
|
data/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Nunify
|
|
2
|
+
=================================
|
|
3
|
+
|
|
4
|
+
###Installation
|
|
5
|
+
|
|
6
|
+
```
|
|
7
|
+
gem install 'nunify'
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
or add this to your `Gemfile`
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
gem 'unify', '~> 0.0.2'
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
###Usage
|
|
17
|
+
|
|
18
|
+
Add this to your `application.scss`
|
|
19
|
+
|
|
20
|
+
```scss
|
|
21
|
+
@import 'nunify';
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
And add this to your `application.js`
|
|
25
|
+
|
|
26
|
+
```js
|
|
27
|
+
//=require nunify
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Nunify uses `default` theme by default. To use another theme, add this to your `application.scss`
|
|
31
|
+
|
|
32
|
+
```scss
|
|
33
|
+
@import 'nunify';
|
|
34
|
+
@import 'nunify/themes/[your_theme_name]'
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
That's it. Enjoy!!!
|
|
38
|
+
|
|
@@ -1070,7 +1070,7 @@
|
|
|
1070
1070
|
overflow: hidden;
|
|
1071
1071
|
padding: 10px 0 6px;
|
|
1072
1072
|
border-bottom: solid 1px #eee;
|
|
1073
|
-
background: url(
|
|
1073
|
+
background: image-url('nunify/breadcrumbs.png') repeat;
|
|
1074
1074
|
}
|
|
1075
1075
|
.breadcrumbs h1 {
|
|
1076
1076
|
color: #666;
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nunify
|
|
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
|
- huynhquancam
|
|
@@ -60,6 +60,7 @@ extensions: []
|
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
62
|
- MIT-LICENSE
|
|
63
|
+
- README.md
|
|
63
64
|
- Rakefile
|
|
64
65
|
- test/dummy/README.rdoc
|
|
65
66
|
- test/dummy/Rakefile
|