colors-sass 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d0f571db9b15d0ab9224236b5ea7002fcc8eedd3
4
+ data.tar.gz: db1a77e548f466d1e7255793ef518524d0c56ecc
5
+ SHA512:
6
+ metadata.gz: f4ea90f697851a7a72596574641a8690ce2c708931aaf30fd3bfe96f5a688a71127c3bc34bcdd0eb12a9f579dca50889903c4470ba2c22524164875918a56a24
7
+ data.tar.gz: 3f58c90cd012b53c911a6054bba4367e827e17e4a76eb2d4d4bd388ac42c4e07e89b6803b383e512742e5f707d8f0f28bda0dddbae2af36e119ed505efa556ca
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 colors-sass.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Vadym Tyemirov
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,29 @@
1
+ # Colors::Sass
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'colors-sass'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install colors-sass
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/<my-github-username>/colors-sass/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,11 @@
1
+ /* Prettier Links */
2
+
3
+ a {
4
+ transition: color .3s ease-in-out;
5
+ }
6
+
7
+ a:link { color: $blue; }
8
+ a:visited { color: $purple; }
9
+ a:hover { color: $aqua; }
10
+ a:active { color: $orange; }
11
+
@@ -0,0 +1,50 @@
1
+ /*
2
+
3
+ SKINS
4
+ • Backgrounds
5
+ • Colors
6
+
7
+ */
8
+
9
+
10
+ /* Backgrounds */
11
+
12
+ .bg-navy { background-color: $navy; }
13
+ .bg-blue { background-color: $blue; }
14
+ .bg-aqua { background-color: $aqua; }
15
+ .bg-teal { background-color: $teal; }
16
+ .bg-olive { background-color: $olive; }
17
+ .bg-green { background-color: $green; }
18
+ .bg-lime { background-color: $lime; }
19
+ .bg-yellow { background-color: $yellow; }
20
+ .bg-orange { background-color: $orange; }
21
+ .bg-red { background-color: $red; }
22
+ .bg-fuchsia { background-color: $fuchsia; }
23
+ .bg-purple { background-color: $purple; }
24
+ .bg-maroon { background-color: $maroon; }
25
+ .bg-white { background-color: $white; }
26
+ .bg-gray { background-color: $gray; }
27
+ .bg-silver { background-color: $silver; }
28
+ .bg-black { background-color: $black; }
29
+
30
+
31
+ /* Colors */
32
+
33
+ .navy { color: $navy; }
34
+ .blue { color: $blue; }
35
+ .aqua { color: $aqua; }
36
+ .teal { color: $teal; }
37
+ .olive { color: $olive; }
38
+ .green { color: $green; }
39
+ .lime { color: $lime; }
40
+ .yellow { color: $yellow; }
41
+ .orange { color: $orange; }
42
+ .red { color: $red; }
43
+ .fuchsia { color: $fuchsia; }
44
+ .purple { color: $purple; }
45
+ .maroon { color: $maroon; }
46
+ .white { color: $white; }
47
+ .silver { color: $silver; }
48
+ .gray { color: $gray; }
49
+ .black { color: $black; }
50
+
@@ -0,0 +1,34 @@
1
+ //
2
+ // COLOR VARIABLES
3
+ //
4
+ // - Cool
5
+ // - Warm
6
+ // - Gray Scale
7
+ //
8
+
9
+ // Cool
10
+
11
+ $aqua: #7FDBFF;
12
+ $blue: #0074D9;
13
+ $navy: #001F3F;
14
+ $teal: #39CCCC;
15
+ $green: #2ECC40;
16
+ $olive: #3D9970;
17
+ $lime: #01FF70;
18
+
19
+ // Warm
20
+
21
+ $yellow: #FFDC00;
22
+ $orange: #FF851B;
23
+ $red: #FF4136;
24
+ $fuchsia: #F012BE;
25
+ $purple: #B10DC9;
26
+ $maroon: #85144B;
27
+
28
+ // Gray Scale
29
+
30
+ $white: #fff;
31
+ $silver: #ddd;
32
+ $gray: #aaa;
33
+ $black: #111;
34
+
@@ -0,0 +1,13 @@
1
+ /***
2
+
3
+ colors.css v1.0
4
+ http://clrs.cc
5
+ @mrmrs
6
+ MIT License
7
+
8
+ ***/
9
+
10
+ @import "variables";
11
+ @import "skins";
12
+ @import "links";
13
+
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'colors/sass/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "colors-sass"
8
+ spec.version = Colors::Sass::VERSION
9
+ spec.authors = ["Vadym Tyemirov"]
10
+ spec.email = ["temirov@gmail.com"]
11
+ spec.summary = %q|Better Colors for the Web|
12
+ spec.description = %q|Color palette for the web for rails|
13
+ spec.homepage = "http://clrs.cc"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
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.5"
22
+ spec.add_development_dependency "rake"
23
+
24
+ spec.add_dependency 'sass-rails', '>= 0'
25
+ spec.add_dependency "railties", ">= 3.2", "< 5.0"
26
+ end
@@ -0,0 +1,8 @@
1
+ require "colors/sass/version"
2
+
3
+ module Colors
4
+ module Sass
5
+ class Engine < ::Rails::Engine
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ module Colors
2
+ module Sass
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: colors-sass
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Vadym Tyemirov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-02-15 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.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
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: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: railties
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '3.2'
62
+ - - "<"
63
+ - !ruby/object:Gem::Version
64
+ version: '5.0'
65
+ type: :runtime
66
+ prerelease: false
67
+ version_requirements: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '3.2'
72
+ - - "<"
73
+ - !ruby/object:Gem::Version
74
+ version: '5.0'
75
+ description: Color palette for the web for rails
76
+ email:
77
+ - temirov@gmail.com
78
+ executables: []
79
+ extensions: []
80
+ extra_rdoc_files: []
81
+ files:
82
+ - ".gitignore"
83
+ - Gemfile
84
+ - LICENSE.txt
85
+ - README.md
86
+ - Rakefile
87
+ - app/assets/stylesheets/_links.scss
88
+ - app/assets/stylesheets/_skins.scss
89
+ - app/assets/stylesheets/_variables.scss
90
+ - app/assets/stylesheets/colors.scss
91
+ - colors-sass.gemspec
92
+ - lib/colors/sass.rb
93
+ - lib/colors/sass/version.rb
94
+ homepage: http://clrs.cc
95
+ licenses:
96
+ - MIT
97
+ metadata: {}
98
+ post_install_message:
99
+ rdoc_options: []
100
+ require_paths:
101
+ - lib
102
+ required_ruby_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ required_rubygems_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
112
+ requirements: []
113
+ rubyforge_project:
114
+ rubygems_version: 2.2.0
115
+ signing_key:
116
+ specification_version: 4
117
+ summary: Better Colors for the Web
118
+ test_files: []