builtinbruges-css-rails 1.0.0
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 +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +45 -0
- data/Rakefile +1 -0
- data/app/assets/stylesheets/builtinbruges-logo.css.sass +17 -0
- data/builtinbruges-css-rails.gemspec +25 -0
- data/lib/builtinbruges/css/rails.rb +12 -0
- data/lib/builtinbruges/css/rails/version.rb +7 -0
- metadata +98 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e1507acdf076887ab17490a518baaa240688a7a2
|
4
|
+
data.tar.gz: 59cc24e28ca3deff6ff1e38fbbd41ed2f99965dd
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2e655540e03492e06afd509c795e69d65a025588084142a3c2b01add6dc3ee0279faffc845709f24eec7254f6be04bf86730e485551bbc70e482eaa5e58a29bc
|
7
|
+
data.tar.gz: e3853a890fef5fdf96ab3cd578055cb3e605f379a5b4e9db79846833ee9ba4c1bb6f7812ca59c9b2990249bedddb717e9da302c656629c1b156213f2d3b2cc53
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Bert Devriese <bert.devriese@gmail.com>
|
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,45 @@
|
|
1
|
+
# Builtinbruges::Css::Rails
|
2
|
+
|
3
|
+
This gem includes all kinds of Sass mixins related to Built in Bruges that can be used in the Rails asset pipeline
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'builtinbruges-css-rails', '~> 1.0.0'
|
10
|
+
|
11
|
+
or to get the latest version:
|
12
|
+
|
13
|
+
gem 'builtinbruges-css-rails', github: "builtinbruges/builtinbruges-css-rails"
|
14
|
+
|
15
|
+
|
16
|
+
And then execute:
|
17
|
+
|
18
|
+
$ bundle
|
19
|
+
|
20
|
+
Or install it yourself as:
|
21
|
+
|
22
|
+
$ gem install builtinbruges-css-rails
|
23
|
+
|
24
|
+
## Usage
|
25
|
+
|
26
|
+
### Logo mixin on <a> element (to use in footer)
|
27
|
+
|
28
|
+
```sass
|
29
|
+
@import "builtinbruges-logo"
|
30
|
+
|
31
|
+
.a
|
32
|
+
+builtinbruges-logo
|
33
|
+
color: #333
|
34
|
+
|
35
|
+
&:hover
|
36
|
+
color: #666
|
37
|
+
```
|
38
|
+
|
39
|
+
## Contributing
|
40
|
+
|
41
|
+
1. Fork it
|
42
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
43
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
44
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
45
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,17 @@
|
|
1
|
+
@mixin builtinbruges-logo
|
2
|
+
display: inline-block
|
3
|
+
font:
|
4
|
+
family: "brandon-grotesque", "proxima-nova", "Helvetica Neue", "Helvetica", "Arial", "Verdana", sans-serif
|
5
|
+
size: 12px
|
6
|
+
weight: 600
|
7
|
+
line-height: 12px
|
8
|
+
text:
|
9
|
+
transform: uppercase
|
10
|
+
decoration: none
|
11
|
+
border: 2px solid #666
|
12
|
+
color: #333
|
13
|
+
border-radius: 3px
|
14
|
+
padding: 2px 3px
|
15
|
+
|
16
|
+
&:hover
|
17
|
+
color: #666
|
@@ -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 'builtinbruges/css/rails/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "builtinbruges-css-rails"
|
8
|
+
spec.version = Builtinbruges::Css::Rails::VERSION
|
9
|
+
spec.authors = ["Bert Devriese"]
|
10
|
+
spec.email = ["bert.devriese@gmail.com"]
|
11
|
+
spec.description = %q{This gem includes Sass mixins with CSS code related to Built in Bruges.com that can be re-used accross all builtinbruges rails projects}
|
12
|
+
spec.summary = %q{This gem includes Sass mixins with CSS code related to Built in Bruges.com that can be re-used accross all builtinbruges rails projects}
|
13
|
+
spec.homepage = "http://www.builtinbruges.com"
|
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","app"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
|
24
|
+
spec.add_dependency "sass-rails", ">= 4.0"
|
25
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require "builtinbruges/css/rails/version"
|
2
|
+
|
3
|
+
module Builtinbruges
|
4
|
+
module Css
|
5
|
+
module Rails
|
6
|
+
# Dummy engine so that lib/assets/stylesheets and vendor/assets/fonts
|
7
|
+
# are picked up by Rails asset pipeline.
|
8
|
+
class Engine < ::Rails::Engine
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
metadata
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: builtinbruges-css-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Bert Devriese
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-11-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.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: '4.0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '4.0'
|
55
|
+
description: This gem includes Sass mixins with CSS code related to Built in Bruges.com
|
56
|
+
that can be re-used accross all builtinbruges rails projects
|
57
|
+
email:
|
58
|
+
- bert.devriese@gmail.com
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- .gitignore
|
64
|
+
- Gemfile
|
65
|
+
- LICENSE.txt
|
66
|
+
- README.md
|
67
|
+
- Rakefile
|
68
|
+
- app/assets/stylesheets/builtinbruges-logo.css.sass
|
69
|
+
- builtinbruges-css-rails.gemspec
|
70
|
+
- lib/builtinbruges/css/rails.rb
|
71
|
+
- lib/builtinbruges/css/rails/version.rb
|
72
|
+
homepage: http://www.builtinbruges.com
|
73
|
+
licenses:
|
74
|
+
- MIT
|
75
|
+
metadata: {}
|
76
|
+
post_install_message:
|
77
|
+
rdoc_options: []
|
78
|
+
require_paths:
|
79
|
+
- lib
|
80
|
+
- app
|
81
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
requirements: []
|
92
|
+
rubyforge_project:
|
93
|
+
rubygems_version: 2.1.11
|
94
|
+
signing_key:
|
95
|
+
specification_version: 4
|
96
|
+
summary: This gem includes Sass mixins with CSS code related to Built in Bruges.com
|
97
|
+
that can be re-used accross all builtinbruges rails projects
|
98
|
+
test_files: []
|