sass-960gs 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  960 Grid System - Standalone
2
- ================================
2
+ ============================
3
3
 
4
4
  960.gs is created by Nathan Smith. See the official site for more info: <http://960.gs/>
5
5
 
@@ -10,12 +10,21 @@ Install
10
10
 
11
11
  gem install sass-960
12
12
 
13
- Adding the 960 plugin to an existing project
14
- ============================================
13
+ Adding the 960 to an existing project
14
+ =====================================
15
15
 
16
16
  Then make sure you have imported the grid library into your core .sass or .scss file with:
17
17
 
18
- @import '960/grid';
18
+ @import '960';
19
+
20
+ Adding the 960.gs to your Rails 3 assets pipeline
21
+ =================================================
22
+
23
+ In your `application.css` add
24
+
25
+ *= require 960
26
+
27
+ And be happy with your 960.gs layout.
19
28
 
20
29
  Customizing your Grid System
21
30
  ============================
@@ -1,4 +1,4 @@
1
- @include 'variables';
1
+ @include '960/variables';
2
2
 
3
3
  @mixin text($font-family: $ninesixty-font-family, $font-size: $ninesixty-font-size) {
4
4
  body {
@@ -0,0 +1,4 @@
1
+ @import '960/variables';
2
+ @import '960/fixed_grid';
3
+ @import '960/fluid_grid';
4
+ @import '960/text';
data/sass-960gs.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{sass-960gs}
5
- s.version = "0.0.1"
5
+ s.version = "0.0.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
8
8
  s.authors = ["Chris Eppstein", "Matt Sanders", "Łukasz Niemier"]
@@ -13,11 +13,11 @@ Gem::Specification.new do |s|
13
13
  s.files = %w{
14
14
  README.md
15
15
  sass-960gs.gemspec
16
- stylesheets/960/_grid.scss
17
- stylesheets/960/_fixed_grid.scss
18
- stylesheets/960/_fluid_grid.scss
19
- stylesheets/960/_text.scss
20
- stylesheets/960/_variables.scss
16
+ app/assets/stylesheets/_960.scss
17
+ app/assets/stylesheets/960/_fixed_grid.scss
18
+ app/assets/stylesheets/960/_fluid_grid.scss
19
+ app/assets/stylesheets/960/_text.scss
20
+ app/assets/stylesheets/960/_variables.scss
21
21
  }
22
22
  s.homepage = %q{https://github.com/Hauleth/sass-960gs}
23
23
  s.rubygems_version = %q{1.3.6}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-960gs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -25,11 +25,11 @@ extra_rdoc_files: []
25
25
  files:
26
26
  - README.md
27
27
  - sass-960gs.gemspec
28
- - stylesheets/960/_grid.scss
29
- - stylesheets/960/_fixed_grid.scss
30
- - stylesheets/960/_fluid_grid.scss
31
- - stylesheets/960/_text.scss
32
- - stylesheets/960/_variables.scss
28
+ - app/assets/stylesheets/_960.scss
29
+ - app/assets/stylesheets/960/_fixed_grid.scss
30
+ - app/assets/stylesheets/960/_fluid_grid.scss
31
+ - app/assets/stylesheets/960/_text.scss
32
+ - app/assets/stylesheets/960/_variables.scss
33
33
  homepage: https://github.com/Hauleth/sass-960gs
34
34
  licenses: []
35
35
  post_install_message:
@@ -1,2 +0,0 @@
1
- @include 'fixed_grid';
2
- @include 'fluid_grid';