picasso 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,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in picasso.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012
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,5 @@
1
+ # Picasso
2
+
3
+ ## Installation
4
+
5
+ $ gem install picasso
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
data/lib/picasso.rb ADDED
@@ -0,0 +1,3 @@
1
+ require 'compass'
2
+ extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
3
+ Compass::Frameworks.register('picasso', :path => extension_path)
@@ -0,0 +1,3 @@
1
+ module Picasso
2
+ VERSION = "0.0.1"
3
+ end
data/picasso.gemspec ADDED
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/picasso/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Leandro D'Onofrio"]
6
+ gem.email = ["ldonofrio@despegar.com"]
7
+ gem.description = %q{Picasso - Sass/Compass Framework}
8
+ gem.summary = %q{Picasso - Sass/Compass Framework. Despegar.com}
9
+ gem.homepage = "http://www.despegar.com/"
10
+
11
+ gem.has_rdoc = false
12
+ gem.rubygems_version = "1.3.5"
13
+ gem.files = `git ls-files`.split($\)
14
+ gem.name = "picasso"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = Picasso::VERSION
17
+
18
+ gem.add_dependency("compass", [">= 0.12.1"])
19
+ end
@@ -0,0 +1,101 @@
1
+ //
2
+ // Variables de la marca Despegar
3
+ // Formato de variables:
4
+ // Atajos: ${marca}-{atajo}. Ejemplo: $despegar-black;
5
+ // Elementos: ${marca}-{elemento}-{propiedad css (opcional)}-{pseudoselector (opcional)}. Ejemplo: $despegar-link-color-hover;
6
+ //
7
+
8
+ //
9
+ // @section marca
10
+ //
11
+ $brand : "despegar";
12
+
13
+
14
+ //
15
+ // @section cuerpos tipograficos
16
+ //
17
+
18
+ //
19
+ // Tamaños
20
+ //
21
+ $despegar-size-1 : 11px;
22
+ $despegar-size-2 : 13px;
23
+ $despegar-size-3 : 16px;
24
+ $despegar-size-4 : 20px;
25
+ $despegar-size-5 : 24px;
26
+ $despegar-size-6 : 28px;
27
+
28
+
29
+ //
30
+ // @section colores base
31
+ //
32
+
33
+ //
34
+ // Comunes
35
+ //
36
+ $despegar-black : #000;
37
+ $despegar-white : #FFF;
38
+ $despegar-yellow : #FF3;
39
+
40
+ //
41
+ // Escala de grises
42
+ //
43
+ $despegar-gray-1 : #222;
44
+ $despegar-gray-2 : #444;
45
+ $despegar-gray-3 : #666;
46
+ $despegar-gray-4 : #888;
47
+ $despegar-gray-5 : #AAA;
48
+ $despegar-gray-6 : #CCC;
49
+ $despegar-gray-7 : #EEE;
50
+
51
+
52
+ //
53
+ // @section elementos
54
+ //
55
+
56
+ //
57
+ // Buscador
58
+ //
59
+ $despegar-searchbox-bg : $despegar-yellow;
60
+
61
+ //
62
+ // Titulos y destacados
63
+ //
64
+ $despegar-title-color : #013D93;
65
+
66
+ //
67
+ // Titulos y destacados (alt)
68
+ //
69
+ $despegar-titlealt-color : #F90;
70
+
71
+
72
+ //
73
+ // @section controles
74
+ //
75
+
76
+ //
77
+ // Links
78
+ //
79
+ $despegar-link-color : #319FDA;
80
+ $despegar-link-color-hover : #66CCFF;
81
+
82
+ //
83
+ // Errores: fondo
84
+ //
85
+ $despegar-error-bg : #FFE6E6;
86
+
87
+ //
88
+ // Errores: borde
89
+ //
90
+ $despegar-error-border : #F00;
91
+
92
+ //
93
+ // Warning: fondo
94
+ //
95
+ $despegar-warning-bg : #FFFFE1;
96
+
97
+ //
98
+ // Warning: borde
99
+ //
100
+ $despegar-warning-border : #FC3;
101
+
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: picasso
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ version: 0.0.1
10
+ platform: ruby
11
+ authors:
12
+ - Leandro D'Onofrio
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2012-05-09 00:00:00 -03:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: compass
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ - 12
30
+ - 1
31
+ version: 0.12.1
32
+ type: :runtime
33
+ version_requirements: *id001
34
+ description: Picasso - Sass/Compass Framework
35
+ email:
36
+ - ldonofrio@despegar.com
37
+ executables: []
38
+
39
+ extensions: []
40
+
41
+ extra_rdoc_files: []
42
+
43
+ files:
44
+ - .gitignore
45
+ - Gemfile
46
+ - LICENSE
47
+ - README.md
48
+ - Rakefile
49
+ - lib/picasso.rb
50
+ - lib/picasso/version.rb
51
+ - picasso.gemspec
52
+ - stylesheets/despegar/_variables.scss
53
+ has_rdoc: true
54
+ homepage: http://www.despegar.com/
55
+ licenses: []
56
+
57
+ post_install_message:
58
+ rdoc_options: []
59
+
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ segments:
67
+ - 0
68
+ version: "0"
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ segments:
74
+ - 0
75
+ version: "0"
76
+ requirements: []
77
+
78
+ rubyforge_project:
79
+ rubygems_version: 1.3.6
80
+ signing_key:
81
+ specification_version: 3
82
+ summary: Picasso - Sass/Compass Framework. Despegar.com
83
+ test_files: []
84
+