colors-rails 0.0.4

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c27f6cd59e37984ad7ed471f724e5ad3cfc1ad34
4
+ data.tar.gz: b826f8e2e0b01fbe5e9cf261a601979e963a348e
5
+ SHA512:
6
+ metadata.gz: 952a9dbfe90570501b58916a9d919833b2f3386d72b2aba0a30bf7e3a091a25b42d2c567b33ac66cfd6321bb7b7353d2fe789500404c502c357f1cb3e81e04fd
7
+ data.tar.gz: 7dcda1b4ce894b61154e137aaf8be50d91584355800d0d998e309e9028fdec3098fab0d3495fd31187c6917c9154778528ce5289c7a7902ad5bd95e4f4723095
@@ -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-rails.gemspec
4
+ gemspec
@@ -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.
@@ -0,0 +1,29 @@
1
+ # Colors::Rails
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'colors-rails'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install colors-rails
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-rails/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
@@ -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,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'colors/rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "colors-rails"
8
+ spec.version = Colors::Rails::VERSION
9
+ spec.authors = ["Vadym Tyemirov"]
10
+ spec.email = ["temirov@gmail.com"]
11
+ spec.summary = %q|Better Colors for Web for rails|
12
+ spec.description = %q|Color palette for the web|
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.3"
22
+ spec.add_development_dependency "rake", '>= 0'
23
+ spec.add_dependency 'sass-rails', '>= 0'
24
+ spec.add_dependency "railties", ">= 3.2", "< 5.0"
25
+ end
@@ -0,0 +1,8 @@
1
+ require "colors/rails/version"
2
+
3
+ module Colors
4
+ module Rails
5
+ class Engine < ::Rails::Engine
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ module Colors
2
+ module Rails
3
+ VERSION = "0.0.4"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: colors-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.4
5
+ platform: ruby
6
+ authors:
7
+ - Vadym Tyemirov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-02-14 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.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
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
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-rails.gemspec
92
+ - lib/colors/rails.rb
93
+ - lib/colors/rails/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 Web for rails
118
+ test_files: []