shibui 0.0.1.alpha → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .sass-cache
6
+ .yardoc
7
+ Gemfile.lock
8
+ InstalledFiles
9
+ _yardoc
10
+ coverage
11
+ doc/
12
+ lib/bundler/man
13
+ pkg
14
+ rdoc
15
+ spec/reports
16
+ test/tmp
17
+ test/version_tmp
18
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify gem dependencies in shibui.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Maximilian Schoening
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,3 @@
1
+ module Shibui
2
+ VERSION = "0.0.1"
3
+ end
data/lib/shibui.rb CHANGED
@@ -1,3 +1,4 @@
1
- require 'compass'
1
+ require "shibui/version"
2
+ require "compass"
2
3
 
3
4
  Compass::Frameworks.register("shibui", :path => File.join(File.dirname(__FILE__), ".."))
data/shibui.gemspec ADDED
@@ -0,0 +1,16 @@
1
+ require File.expand_path('../lib/shibui/version', __FILE__)
2
+
3
+ Gem::Specification.new do |gem|
4
+ gem.authors = ["Maximilian Schoening"]
5
+ gem.email = ["max@heroku.com"]
6
+ gem.description = %q{The Heroku CSS styleguide.}
7
+ gem.summary = %q{The Heroku CSS styleguide as a Compass extension.}
8
+ gem.homepage = "https://github.com/heroku/shibui"
9
+
10
+ gem.files = `git ls-files`.split("\n")
11
+ gem.name = "shibui"
12
+ gem.require_paths = ["lib"]
13
+ gem.version = Shibui::VERSION
14
+
15
+ gem.add_dependency "compass", ">= 0.11.5"
16
+ end
@@ -1,3 +1,13 @@
1
+ @import url("https://statics.heroku.com/fonts/fonts.css")
2
+
3
+ $base-font-size: 13px !default
4
+ $base-line-height: 18px !default
5
+ $relative-font-sizing: false !default
6
+
7
+ @import "compass"
8
+ @import "compass/reset"
9
+
10
+ @import "shibui/shared"
1
11
  @import "shibui/base"
2
12
  @import "shibui/buttons"
3
13
  @import "shibui/forms"
@@ -1,13 +1,3 @@
1
- @import url("https://statics.heroku.com/fonts/fonts.css")
2
-
3
- @import "shared"
4
- @import "compass/reset"
5
-
6
- $base-font-size: 13px !default
7
- $base-line-height: 18px !default
8
- $relative-font-sizing: false !default
9
-
10
- @import "compass/typography/vertical_rhythm"
11
1
  @include establish-baseline
12
2
 
13
3
  body
@@ -19,8 +9,8 @@ body
19
9
  p
20
10
  @include trailer
21
11
 
22
- &:first-child
23
- @include leader
12
+ &:last-child
13
+ margin-bottom: 0
24
14
 
25
15
  #{headings(all)}
26
16
  color: #fff
@@ -46,8 +36,8 @@ h5
46
36
  ul, ol
47
37
  @include trailer
48
38
 
49
- &:first-child
50
- @include leader
39
+ &:last-child
40
+ margin-bottom: 0
51
41
 
52
42
  ul
53
43
  list-style: disc
@@ -65,8 +55,8 @@ pre
65
55
  padding: $base-line-height
66
56
  @include trailer
67
57
 
68
- &:first-child
69
- @include leader
58
+ &:last-child
59
+ margin-bottom: 0
70
60
 
71
61
  hr
72
62
  background: #17171e
@@ -75,8 +65,8 @@ hr
75
65
  height: 3px
76
66
  @include trailer
77
67
 
78
- &:first-child
79
- @include leader
68
+ &:last-child
69
+ margin-bottom: 0
80
70
 
81
71
  a
82
72
  &:link,
@@ -96,4 +86,4 @@ strong
96
86
 
97
87
  code
98
88
  @include adjust-font-size-to($base-font-size * .9, $lines: 1)
99
- @include meslo-fontstack
89
+ @include meslo-fontstack
@@ -1,5 +1,3 @@
1
- @import "shared"
2
-
3
1
  button
4
2
  @include reset-box-model
5
3
 
@@ -1,5 +1,3 @@
1
- @import "shared"
2
-
3
1
  .hero
4
2
  text-align: center
5
3
  @include leader($lines: 2, $property: margin)
@@ -1,5 +1,3 @@
1
- @import "shared"
2
-
3
1
  input[type="text"],
4
2
  textarea
5
3
  background: #0d0e13
@@ -1,5 +1,3 @@
1
- @import "compass/css3"
2
-
3
1
  @mixin helvetica-fontstack()
4
2
  font-family: "helvetica neue", helvetica, arial, geneva, sans-serif
5
3
 
metadata CHANGED
@@ -1,19 +1,19 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shibui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.alpha
5
- prerelease: 6
4
+ version: 0.0.1
5
+ prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Maximilian Schoening
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-03-08 00:00:00.000000000Z
12
+ date: 2012-04-23 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: compass
16
- requirement: &2202158440 !ruby/object:Gem::Requirement
16
+ requirement: &70262930893720 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,15 +21,22 @@ dependencies:
21
21
  version: 0.11.5
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *2202158440
25
- description: The Heroku styleguide harnessing the power of Compass.
26
- email: max@heroku.com
24
+ version_requirements: *70262930893720
25
+ description: The Heroku CSS styleguide.
26
+ email:
27
+ - max@heroku.com
27
28
  executables: []
28
29
  extensions: []
29
30
  extra_rdoc_files: []
30
31
  files:
32
+ - .gitignore
33
+ - Gemfile
34
+ - LICENSE
35
+ - Rakefile
31
36
  - Readme.md
32
37
  - lib/shibui.rb
38
+ - lib/shibui/version.rb
39
+ - shibui.gemspec
33
40
  - stylesheets/_shibui.sass
34
41
  - stylesheets/shibui/_base.sass
35
42
  - stylesheets/shibui/_buttons.sass
@@ -55,13 +62,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
55
62
  required_rubygems_version: !ruby/object:Gem::Requirement
56
63
  none: false
57
64
  requirements:
58
- - - ! '>'
65
+ - - ! '>='
59
66
  - !ruby/object:Gem::Version
60
- version: 1.3.1
67
+ version: '0'
61
68
  requirements: []
62
69
  rubyforge_project:
63
70
  rubygems_version: 1.8.10
64
71
  signing_key:
65
72
  specification_version: 3
66
- summary: The Heroku styleguide harnessing the power of Compass.
73
+ summary: The Heroku CSS styleguide as a Compass extension.
67
74
  test_files: []