sally 0.1.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b11777873563c360847063c5ef027a6fa28f9e9e
4
+ data.tar.gz: 24ad3f539175ec219955ffdbcd74d1cf0fbec908
5
+ SHA512:
6
+ metadata.gz: e8315c3b9a6fa0b83d279fb4660a2769f6b0eea55e852a9324cb273b61eefe7b1fe6b4e1d871370ba4daaaaf300af6ea490286a63bd72aef1d7f4b26773a230a
7
+ data.tar.gz: de902168259616b8ce54531d584e15511c61e572f122e728659fc9a04c1f812755d08ce235d04b29bcb4085b5052eb0247a7c12dca8ef9bbbaebe89107bce940
data/.DS_Store ADDED
Binary file
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in sally.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 twitter.com/rleshner
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/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # sally
2
+ Sally is the leanest, meanest Flexbox grid
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
Binary file
@@ -0,0 +1,67 @@
1
+ *, *:after, *:before
2
+ box-sizing: border-box
3
+
4
+ $device-sm: 30em
5
+ $device-md: 50em
6
+ $device-lg: 72em
7
+ $column-gutter: 1.4rem
8
+
9
+ html, body
10
+ font-size: 10px
11
+
12
+ .container
13
+ margin: 0 auto
14
+ padding: 0 $column-gutter
15
+ max-width: $device-lg
16
+
17
+ .container:after, .row:after
18
+ content: ""
19
+ display: table
20
+ clear: both
21
+
22
+ .row
23
+ display: flex
24
+ flex-flow: row wrap
25
+ margin-right: -($column-gutter/2)
26
+ margin-left: -($column-gutter/2)
27
+ &.align-middle
28
+ align-items: center
29
+ &.align-bottom
30
+ align-items: flex-end
31
+ &.align-left
32
+ justify-content: flex-start
33
+ &.align-center
34
+ justify-content: center
35
+ &.align-right
36
+ justify-content: flex-end
37
+
38
+ [class*="col"]
39
+ width: 100%
40
+ padding: 0 $column-gutter/2
41
+
42
+ @mixin col-size($col)
43
+ flex-basis: (100% * $col / 12)
44
+ max-width: (100% * $col / 12)
45
+
46
+ @each $col in (1,2,3,4,5,6,7,8,9,10,11,12)
47
+ .col-xs-#{$col}
48
+ @include col-size($col)
49
+
50
+ @media (min-width: #{$device-sm})
51
+ html, body
52
+ font-size: 12px
53
+ @each $col in (1,2,3,4,5,6,7,8,9,10,11,12)
54
+ .col-sm-#{$col}
55
+ @include col-size($col)
56
+
57
+ @media (min-width: #{$device-md})
58
+ html, body
59
+ font-size: 14px
60
+ @each $col in (1,2,3,4,5,6,7,8,9,10,11,12)
61
+ .col-md-#{$col}
62
+ @include col-size($col)
63
+
64
+ @media (min-width: #{$device-lg})
65
+ @each $col in (1,2,3,4,5,6,7,8,9,10,11,12)
66
+ .col-lg-#{$col}
67
+ @include col-size($col)
data/lib/.DS_Store ADDED
Binary file
data/lib/sally.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "sally/version"
2
+ require "sally/engine"
3
+
4
+ module Sally
5
+ # Your code goes here...
6
+ end
data/sally.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'sally/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "sally"
8
+ spec.version = Sally::VERSION
9
+ spec.authors = ["twitter.com/rleshner"]
10
+ spec.email = ["robert@boatbound.co"]
11
+ spec.summary = %q{Sally is the leanest, meanest Flexbox grid}
12
+ spec.description = %q{If you're a developer looking for an ultra lightweight, easily customizable, fully responsive grid for your next project, Sally is for you. Sally avoids the weight of larger grid frameworks, while adding all-new, amazing features that existing grids currently don't have.}
13
+ spec.homepage = "http://meetsally.com"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_development_dependency "sass-rails"
24
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sally
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - twitter.com/rleshner
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-05-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sass-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: If you're a developer looking for an ultra lightweight, easily customizable,
56
+ fully responsive grid for your next project, Sally is for you. Sally avoids the
57
+ weight of larger grid frameworks, while adding all-new, amazing features that existing
58
+ grids currently don't have.
59
+ email:
60
+ - robert@boatbound.co
61
+ executables: []
62
+ extensions: []
63
+ extra_rdoc_files: []
64
+ files:
65
+ - ".DS_Store"
66
+ - Gemfile
67
+ - LICENSE.txt
68
+ - README.md
69
+ - Rakefile
70
+ - app/assets/.DS_Store
71
+ - app/assets/stylesheets/sally.sass
72
+ - lib/.DS_Store
73
+ - lib/sally.rb
74
+ - sally.gemspec
75
+ homepage: http://meetsally.com
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.2.2
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: Sally is the leanest, meanest Flexbox grid
99
+ test_files: []