concisecss 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 +23 -16
- data/lib/concisecss/version.rb +1 -1
- metadata +3 -4
- data/app/assets/javascripts/concisecss.js +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b4d4a15bb01d56b80a4ea59b297391c23b8da0e9
|
|
4
|
+
data.tar.gz: 52cb36df2df1586a47b7fb6996bdb1f5114b487d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a26a00ed9c5e6cf84ea2814289e363078db4f98d7a1dc55977112723558cc45a135b270599859c308e9ba3bbe220d2728ac21f164307d7f4234f2f01b96e2b18
|
|
7
|
+
data.tar.gz: 7dce3cc1473e888ed099700dd8658c0120c46287a8f8194b9e665e77e5c04ed686ea3ee3befe3bc037fae8aa91439135fa46f7f2f6547643011ec43dc0273330
|
data/README.md
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
|
-
[<img src="http://i.imgur.com/4t1ClRx.png">](http://concisecss.com/)
|
|
2
|
-
|
|
3
|
-
[](http://badge.fury.io/rb/concisecss)
|
|
1
|
+
# [<img src="http://i.imgur.com/4t1ClRx.png">](http://concisecss.com/)
|
|
2
|
+
|
|
4
3
|
[](https://gitter.im/concisecss)
|
|
5
|
-
[](https://twitter.com/ConciseCSS)
|
|
7
|
-
[](https://plus.google.com/103423710089455112688)
|
|
4
|
+
[](http://badge.fury.io/rb/concisecss)
|
|
8
5
|
|
|
9
|
-
Concise is a lightweight front-end framework that provides a number of great features without the bloat. Concise is built based on Object-Oriented CSS principles and keeps semantics in mind to provide a small learning curve but high level of customization.
|
|
6
|
+
Concise is a lightweight, front-end framework that provides a number of great features without the bloat. Concise is built based on Object-Oriented CSS principles and keeps semantics in mind to provide a small learning curve, but a high level of customization.
|
|
10
7
|
|
|
11
8
|
## Installation Instructions
|
|
12
9
|
|
|
13
10
|
Add this line to your application's Gemfile:
|
|
14
11
|
|
|
15
|
-
gem 'concisecss'
|
|
12
|
+
gem 'concisecss', '~> 0.0.2'
|
|
16
13
|
|
|
17
14
|
And then execute:
|
|
18
15
|
|
|
@@ -33,13 +30,17 @@ Not every single project you are working needs all the ConciseCss javascripts f
|
|
|
33
30
|
//= require concisecss/close
|
|
34
31
|
```
|
|
35
32
|
To add the css just require
|
|
36
|
-
|
|
37
33
|
```css
|
|
38
34
|
*= require concise
|
|
39
35
|
```
|
|
36
|
+
If you intend to extend or override concise. You might want to create an override file, for example app/assets/stylesheets/custom.css.scss and then import concise
|
|
37
|
+
```css
|
|
38
|
+
@import "concise";
|
|
39
|
+
```
|
|
40
40
|
|
|
41
41
|
## Documentation
|
|
42
|
-
|
|
42
|
+
|
|
43
|
+
What would a project be without great documentation? Concise has documentation for everything that is included in the framework. If you see something that is missing or incorrect, don't hesitate to open up an issue on our GitHub repo.
|
|
43
44
|
|
|
44
45
|
Check out our documentation here: [http://concisecss.com/documentation](http://concisecss.com/documentation)
|
|
45
46
|
|
|
@@ -47,12 +48,18 @@ Check out our documentation here: [http://concisecss.com/documentation](http://c
|
|
|
47
48
|
|
|
48
49
|
You can keep up-to-date with the changes that we have made via our [releases page](https://github.com/ConciseCSS/concise.css-gem/releases).
|
|
49
50
|
|
|
50
|
-
Versioning
|
|
51
|
-
-------------
|
|
51
|
+
## Versioning
|
|
52
52
|
|
|
53
53
|
Concise is currently maintained under the [Semantic Versioning guidelines](http://semver.org/).
|
|
54
|
-
|
|
55
|
-
License
|
|
56
|
-
-------------
|
|
57
54
|
|
|
58
|
-
|
|
55
|
+
## Elsewhere
|
|
56
|
+
|
|
57
|
+
[](https://facebook.com/ConciseCSS)
|
|
58
|
+
[](https://twitter.com/ConciseCSS)
|
|
59
|
+
[](https://plus.google.com/103423710089455112688)
|
|
60
|
+
|
|
61
|
+
## License
|
|
62
|
+
|
|
63
|
+
Code released under the [MIT license](https://github.com/ConciseCSS/concise.css/blob/master/LICENSE). Documentation released under [Creative Commons](http://creativecommons.org/licenses/by-sa/4.0/).
|
|
64
|
+
|
|
65
|
+
[](http://githalytics.com/ConciseCSS/concise.css-gem)
|
data/lib/concisecss/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: concisecss
|
|
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
|
- Benjamin Sigidi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-07-
|
|
11
|
+
date: 2014-07-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -87,7 +87,6 @@ files:
|
|
|
87
87
|
- LICENSE
|
|
88
88
|
- README.md
|
|
89
89
|
- Rakefile
|
|
90
|
-
- app/assets/javascripts/concisecss.js
|
|
91
90
|
- app/assets/javascripts/concisecss/close.js
|
|
92
91
|
- app/assets/javascripts/concisecss/dropdown.js
|
|
93
92
|
- app/assets/javascripts/concisecss/naver.js
|
|
@@ -147,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
147
146
|
version: '0'
|
|
148
147
|
requirements: []
|
|
149
148
|
rubyforge_project:
|
|
150
|
-
rubygems_version: 2.
|
|
149
|
+
rubygems_version: 2.4.1
|
|
151
150
|
signing_key:
|
|
152
151
|
specification_version: 4
|
|
153
152
|
summary: Concise is built from the ground-up for mobile devices. This means it will
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//= require concisecss
|