concisecss 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c128805891632c45a18690001d9eee0aadb1e04
4
- data.tar.gz: 46d6f858c4edb91ba35683740b5605b368f4a3bd
3
+ metadata.gz: b4d4a15bb01d56b80a4ea59b297391c23b8da0e9
4
+ data.tar.gz: 52cb36df2df1586a47b7fb6996bdb1f5114b487d
5
5
  SHA512:
6
- metadata.gz: 9969bd872829a9b3bc1087e066d693348b56ab2ceeee3ec91f3592f313fa9b0a62df27cb5ed153819aa97b7c2f6bab6e6526aa5ddc4640138bf8f3fa18cc95c1
7
- data.tar.gz: 1706edfaf8fbc7fca4f8ee047aa3e91fb320bcde1a135e6901ab12de96c173502d03eba29fdc1cf0d1ede8cd2f9918af8583c9e690fd3c3a382a955ba183020a
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
- [![Gem Version](https://badge.fury.io/rb/concisecss.svg)](http://badge.fury.io/rb/concisecss)
1
+ # [<img src="http://i.imgur.com/4t1ClRx.png">](http://concisecss.com/)
2
+
4
3
  [![Gitter chat](https://badges.gitter.im/concisecss.png)](https://gitter.im/concisecss)
5
- [![Like Concise on Facebook](http://i.imgur.com/4dy5UUK.png)](https://facebook.com/ConciseCSS)
6
- [![Follow Concise on Twitter](http://i.imgur.com/4AkKsMx.png)](https://twitter.com/ConciseCSS)
7
- [![Follow Concise on Google+](http://i.imgur.com/gdFNEMe.png)](https://plus.google.com/103423710089455112688)
4
+ [![Gem Version](https://badge.fury.io/rb/concisecss.svg)](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
- What would a project be without gread 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.
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
- Code and documentation copyright 2014 Keenan Payne. 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/).
55
+ ## Elsewhere
56
+
57
+ [![Like Concise on Facebook](http://i.imgur.com/4dy5UUK.png)](https://facebook.com/ConciseCSS)
58
+ [![Follow Concise on Twitter](http://i.imgur.com/4AkKsMx.png)](https://twitter.com/ConciseCSS)
59
+ [![Follow Concise on Google+](http://i.imgur.com/gdFNEMe.png)](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
+ [![githalytics.com alpha](https://cruel-carlota.pagodabox.com/4f404142bdcae0124dadfb2427083d1f "githalytics.com")](http://githalytics.com/ConciseCSS/concise.css-gem)
@@ -1,3 +1,3 @@
1
1
  module Concisecss
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
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.2
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-16 00:00:00.000000000 Z
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.2.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