front_man 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/Guardfile +45 -0
- data/LICENSE.txt +21 -0
- data/README.md +65 -0
- data/Rakefile +6 -0
- data/app/assets/javascripts/front_man/.keep +0 -0
- data/app/assets/javascripts/front_man.js +1 -0
- data/app/assets/stylesheets/_front_man.scss +7 -0
- data/app/assets/stylesheets/front_man/.keep +0 -0
- data/app/assets/stylesheets/front_man/_polyfills.scss +57 -0
- data/app/assets/stylesheets/front_man/_utilities.scss +95 -0
- data/app/assets/stylesheets/front_man/_z-index.scss +12 -0
- data/app/helpers/front_man/images_helper.rb +31 -0
- data/bin/console +11 -0
- data/bin/setup +7 -0
- data/front_man.gemspec +32 -0
- data/lib/front_man/engine.rb +11 -0
- data/lib/front_man/version.rb +3 -0
- data/lib/front_man.rb +7 -0
- metadata +181 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 9768629ff7e4c4e6de7c5f396a584b3f4233e95d
|
4
|
+
data.tar.gz: 3f4431ab526b6f67108323aece0e855d2c7593e0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 050d99748bb14ceea7d41e625102fe15671900c5a58491caad8910c4c79beee3b3d531c576eda78307efc66a80613c373361e7539be8117711d63b09877d8248
|
7
|
+
data.tar.gz: c90e2087264591af64dcb77e11c4fb73ebc86cc16bcbbb7e38dea3bcee0da244b1269f9781becfa6e43b8556ad7ad6c62c4359ed002c64652e58aae695303691
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
4
|
+
|
5
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
|
6
|
+
|
7
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
8
|
+
|
9
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
10
|
+
|
11
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
12
|
+
|
13
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/Gemfile
ADDED
data/Guardfile
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# A sample Guardfile
|
2
|
+
# More info at https://github.com/guard/guard#readme
|
3
|
+
|
4
|
+
## Uncomment and set this to only include directories you want to watch
|
5
|
+
# directories %w(app lib config test spec features) \
|
6
|
+
# .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
|
7
|
+
|
8
|
+
## Note: if you are using the `directories` clause above and you are not
|
9
|
+
## watching the project directory ('.'), then you will want to move
|
10
|
+
## the Guardfile to a watched dir and symlink it back, e.g.
|
11
|
+
#
|
12
|
+
# $ mkdir config
|
13
|
+
# $ mv Guardfile config/
|
14
|
+
# $ ln -s config/Guardfile .
|
15
|
+
#
|
16
|
+
# and, you'll have to watch "config/Guardfile" instead of "Guardfile"
|
17
|
+
|
18
|
+
# Note: The cmd option is now required due to the increasing number of ways
|
19
|
+
# rspec may be run, below are examples of the most common uses.
|
20
|
+
# * bundler: 'bundle exec rspec'
|
21
|
+
# * bundler binstubs: 'bin/rspec'
|
22
|
+
# * spring: 'bin/rspec' (This will use spring if running and you have
|
23
|
+
# installed the spring binstubs per the docs)
|
24
|
+
# * zeus: 'zeus rspec' (requires the server to be started separately)
|
25
|
+
# * 'just' rspec: 'rspec'
|
26
|
+
|
27
|
+
guard :rspec, cmd: 'bundle exec rspec' do
|
28
|
+
require 'guard/rspec/dsl'
|
29
|
+
dsl = Guard::RSpec::Dsl.new(self)
|
30
|
+
|
31
|
+
# RSpec files
|
32
|
+
rspec = dsl.rspec
|
33
|
+
watch(rspec.spec_helper) { rspec.spec_dir }
|
34
|
+
watch(rspec.spec_support) { rspec.spec_dir }
|
35
|
+
watch(rspec.spec_files)
|
36
|
+
|
37
|
+
# Ruby files
|
38
|
+
ruby = dsl.ruby
|
39
|
+
dsl.watch_spec_files_for(ruby.lib_files)
|
40
|
+
|
41
|
+
# watch /app files
|
42
|
+
watch(%r{^app/(.+)/front_man/(.+).rb$}) do |m|
|
43
|
+
"spec/#{m[1]}/#{m[2]}_spec.rb"
|
44
|
+
end
|
45
|
+
end
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Viktor Fonic
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
# Frontman
|
2
|
+
|
3
|
+
A gem for easier front-end development in Ruby.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'front_man'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
```bash
|
16
|
+
$ bundle
|
17
|
+
```
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
Import front_man in your `application.scss`:
|
22
|
+
|
23
|
+
```scss
|
24
|
+
@import 'front_man';
|
25
|
+
```
|
26
|
+
|
27
|
+
Or if you want to import components manually:
|
28
|
+
|
29
|
+
```scss
|
30
|
+
@import 'front_man/z-index';
|
31
|
+
```
|
32
|
+
|
33
|
+
Make sure the file has .scss extension (or .sass for Sass syntax). If you have just generated a new Rails app, it may come with a .css file instead. If this file exists, it will be served instead of Sass, so rename it:
|
34
|
+
|
35
|
+
```bash
|
36
|
+
$ mv app/assets/stylesheets/application.css app/assets/stylesheets/application.scss
|
37
|
+
```
|
38
|
+
|
39
|
+
## Kudos
|
40
|
+
|
41
|
+
The conventions laid out here were based upon those discussed in the article below. Kudos to [@fat](https://github.com/fat).
|
42
|
+
|
43
|
+
https://medium.com/@fat/mediums-css-is-actually-pretty-fucking-good-b8e2a6c78b06
|
44
|
+
|
45
|
+
## Development
|
46
|
+
|
47
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
48
|
+
|
49
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
50
|
+
|
51
|
+
## Contributing
|
52
|
+
|
53
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/DVELP/front_man. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
54
|
+
|
55
|
+
|
56
|
+
## License
|
57
|
+
|
58
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
59
|
+
|
60
|
+
<br></br>
|
61
|
+
[![DVELP logo](https://raw.githubusercontent.com/DVELP/cookbook/master/assets/dvelp-logo.png "DVELP logo")](http://dvelp.co.uk)
|
62
|
+
|
63
|
+
Seoable was created and is maintained by DVELP Ltd.
|
64
|
+
|
65
|
+
If you like what you see and would like to hire us or join us, [get in touch](http://dvelp.co.uk)!
|
data/Rakefile
ADDED
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
//= require_tree .
|
File without changes
|
@@ -0,0 +1,57 @@
|
|
1
|
+
// polyfills should be used for browser pre-fixed properties exclusively
|
2
|
+
// mixin syntax: m-<propertyName>
|
3
|
+
|
4
|
+
@mixin m-animation($animation) {
|
5
|
+
-webkit-animation: $animation;
|
6
|
+
animation: $animation;
|
7
|
+
}
|
8
|
+
@mixin m-antialiasing {
|
9
|
+
-webkit-font-smoothing: antialiased;
|
10
|
+
-moz-osx-font-smoothing: grayscale;
|
11
|
+
}
|
12
|
+
@mixin m-borderRadius($radius) {
|
13
|
+
-webkit-border-radius: $radius;
|
14
|
+
-moz-border-radius: $radius;
|
15
|
+
border-radius: $radius;
|
16
|
+
}
|
17
|
+
@mixin m-boxShadow($shadow) {
|
18
|
+
-webkit-box-shadow: $shadow;
|
19
|
+
-moz-box-shadow: $shadow;
|
20
|
+
-ms-box-shadow: $shadow;
|
21
|
+
box-shadow: $shadow;
|
22
|
+
}
|
23
|
+
@mixin m-keyframes($animationName) {
|
24
|
+
@-webkit-keyframes #{$animationName} {
|
25
|
+
@content;
|
26
|
+
}
|
27
|
+
@-moz-keyframes #{$animationName} {
|
28
|
+
@content;
|
29
|
+
}
|
30
|
+
@-o-keyframes #{$animationName} {
|
31
|
+
@content;
|
32
|
+
}
|
33
|
+
@keyframes #{$animationName} {
|
34
|
+
@content;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
@mixin m-transform($transform) {
|
38
|
+
-webkit-transform: $transform;
|
39
|
+
-moz-transform: $transform;
|
40
|
+
-ms-transform: $transform;
|
41
|
+
-o-transform: $transform;
|
42
|
+
transform: $transform;
|
43
|
+
}
|
44
|
+
@mixin m-transition($transition) {
|
45
|
+
-webkit-transition: $transition;
|
46
|
+
-moz-transition: $transition;
|
47
|
+
-o-transition: $transition;
|
48
|
+
transition: $transition;
|
49
|
+
}
|
50
|
+
@mixin m-userSelect($option) {
|
51
|
+
-webkit-touch-callout: $option;
|
52
|
+
-webkit-user-select: $option;
|
53
|
+
-khtml-user-select: $option;
|
54
|
+
-moz-user-select: $option;
|
55
|
+
-ms-user-select: $option;
|
56
|
+
user-select: $option;
|
57
|
+
}
|
@@ -0,0 +1,95 @@
|
|
1
|
+
// Utilities must use a camel case name, prefixed with a u namespace and should
|
2
|
+
// be set in utilities.scss
|
3
|
+
// e.g. .u-pullRight
|
4
|
+
|
5
|
+
// ALIGNMENT
|
6
|
+
.u-align--center {
|
7
|
+
margin-left: auto;
|
8
|
+
margin-right: auto;
|
9
|
+
}
|
10
|
+
.u-float--left {
|
11
|
+
float: left;
|
12
|
+
}
|
13
|
+
.u-float--right {
|
14
|
+
float: right;
|
15
|
+
}
|
16
|
+
.u-verticalAlign--center {
|
17
|
+
display: block !important;
|
18
|
+
position: relative;
|
19
|
+
top: 50%;
|
20
|
+
|
21
|
+
@include m-transform(translateY(-50%));
|
22
|
+
}
|
23
|
+
.u-verticalAlign--middle {
|
24
|
+
display: table-cell;
|
25
|
+
vertical-align: middle;
|
26
|
+
}
|
27
|
+
// IMAGES
|
28
|
+
.u-image--fullBleed {
|
29
|
+
background-position: center;
|
30
|
+
background-size: cover;
|
31
|
+
overflow: hidden;
|
32
|
+
}
|
33
|
+
.u-image--fullBleed--landscape > img {
|
34
|
+
max-width: 1000%;
|
35
|
+
height: 105%;
|
36
|
+
}
|
37
|
+
.u-image--fullBleed--portrait > img {
|
38
|
+
max-width: 1000%;
|
39
|
+
height: 105%;
|
40
|
+
}
|
41
|
+
.u-image--fullWidth img {
|
42
|
+
width: 100%;
|
43
|
+
height: auto;
|
44
|
+
}
|
45
|
+
// LISTS
|
46
|
+
.u-list--plain {
|
47
|
+
list-style: none;
|
48
|
+
margin: 0;
|
49
|
+
padding: 0;
|
50
|
+
}
|
51
|
+
.u-list--inline > li {
|
52
|
+
display: inline-block;
|
53
|
+
}
|
54
|
+
// MAPS
|
55
|
+
.u-map img {
|
56
|
+
max-width: none;
|
57
|
+
}
|
58
|
+
.u-map label {
|
59
|
+
display: inline;
|
60
|
+
width: auto;
|
61
|
+
}
|
62
|
+
// OVERFLOWING
|
63
|
+
.u-clearfix:after {
|
64
|
+
content: '';
|
65
|
+
display: table;
|
66
|
+
clear: both;
|
67
|
+
}
|
68
|
+
.u-overflow--hidden {
|
69
|
+
overflow: hidden;
|
70
|
+
overflow-y: scroll;
|
71
|
+
-webkit-overflow-scrolling: touch;
|
72
|
+
}
|
73
|
+
// SPACING
|
74
|
+
.u-noMargin {
|
75
|
+
margin: 0;
|
76
|
+
}
|
77
|
+
.u-noPadding {
|
78
|
+
padding: 0;
|
79
|
+
}
|
80
|
+
.u-stripped {
|
81
|
+
margin: 0;
|
82
|
+
padding: 0;
|
83
|
+
}
|
84
|
+
// VISIBILITY
|
85
|
+
.u-is-hidden {
|
86
|
+
display: none !important;
|
87
|
+
}
|
88
|
+
.u-is-transparent {
|
89
|
+
opacity: 0;
|
90
|
+
|
91
|
+
@include m-transition(opacity 0.8s ease-in-out);
|
92
|
+
}
|
93
|
+
.u-is-opaque {
|
94
|
+
opacity: 1;
|
95
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module FrontMan
|
2
|
+
module ImagesHelper
|
3
|
+
def sprite_tag(filename, options = {})
|
4
|
+
content_tag :svg, options do
|
5
|
+
tag :use, 'xlink:href' => "##{filename}"
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
def inline_svg(filename)
|
10
|
+
file = File.read("app/assets/images/#{filename}")
|
11
|
+
content_tag :div, file.html_safe, class: 'u-is-hidden'
|
12
|
+
end
|
13
|
+
|
14
|
+
def image_set_tag(filename, options = {})
|
15
|
+
srcset = options[:srcset]
|
16
|
+
if srcset.present?
|
17
|
+
srcset = srcset.map { |src, size| "#{image_path(src)} #{size}" }
|
18
|
+
srcset = srcset.join(', ')
|
19
|
+
|
20
|
+
if options[:class].present? && options[:class].match(/\blazyload\b/)
|
21
|
+
options.delete(:srcset)
|
22
|
+
options[:data] = { sizes: 'auto', srcset: srcset }
|
23
|
+
else
|
24
|
+
options[:srcset] = srcset
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
image_tag(filename, options)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'bundler/setup'
|
4
|
+
require 'front_man'
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
require 'pry'
|
11
|
+
Pry.start
|
data/bin/setup
ADDED
data/front_man.gemspec
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'front_man/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'front_man'
|
8
|
+
spec.version = FrontMan::VERSION
|
9
|
+
spec.authors = ['Viktor Fonic', 'Tom Mullen']
|
10
|
+
spec.email = ['viktor@dvelp.co.uk', 'tom@dvelp.co.uk']
|
11
|
+
|
12
|
+
spec.summary = 'The DVELP frontend framework.'
|
13
|
+
spec.homepage = 'http://dvelp.co.uk/'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|spec|features)/})
|
18
|
+
end
|
19
|
+
|
20
|
+
spec.bindir = 'exe'
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ['lib']
|
23
|
+
|
24
|
+
spec.add_development_dependency 'bundler', '~> 1.10'
|
25
|
+
spec.add_development_dependency 'guard'
|
26
|
+
spec.add_development_dependency 'guard-rspec'
|
27
|
+
spec.add_development_dependency 'rails'
|
28
|
+
spec.add_development_dependency 'pry'
|
29
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
30
|
+
spec.add_development_dependency 'rspec'
|
31
|
+
spec.add_development_dependency 'rspec-html-matchers'
|
32
|
+
end
|
data/lib/front_man.rb
ADDED
metadata
ADDED
@@ -0,0 +1,181 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: front_man
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Viktor Fonic
|
8
|
+
- Tom Mullen
|
9
|
+
autorequire:
|
10
|
+
bindir: exe
|
11
|
+
cert_chain: []
|
12
|
+
date: 2015-11-23 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '1.10'
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "~>"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '1.10'
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: guard
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '0'
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: guard-rspec
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
type: :development
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: rails
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
type: :development
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: pry
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
type: :development
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: rake
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - "~>"
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '10.0'
|
91
|
+
type: :development
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - "~>"
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '10.0'
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: rspec
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
type: :development
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: rspec-html-matchers
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0'
|
119
|
+
type: :development
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
description:
|
127
|
+
email:
|
128
|
+
- viktor@dvelp.co.uk
|
129
|
+
- tom@dvelp.co.uk
|
130
|
+
executables: []
|
131
|
+
extensions: []
|
132
|
+
extra_rdoc_files: []
|
133
|
+
files:
|
134
|
+
- ".gitignore"
|
135
|
+
- ".rspec"
|
136
|
+
- CODE_OF_CONDUCT.md
|
137
|
+
- Gemfile
|
138
|
+
- Guardfile
|
139
|
+
- LICENSE.txt
|
140
|
+
- README.md
|
141
|
+
- Rakefile
|
142
|
+
- app/assets/javascripts/front_man.js
|
143
|
+
- app/assets/javascripts/front_man/.keep
|
144
|
+
- app/assets/stylesheets/_front_man.scss
|
145
|
+
- app/assets/stylesheets/front_man/.keep
|
146
|
+
- app/assets/stylesheets/front_man/_polyfills.scss
|
147
|
+
- app/assets/stylesheets/front_man/_utilities.scss
|
148
|
+
- app/assets/stylesheets/front_man/_z-index.scss
|
149
|
+
- app/helpers/front_man/images_helper.rb
|
150
|
+
- bin/console
|
151
|
+
- bin/setup
|
152
|
+
- front_man.gemspec
|
153
|
+
- lib/front_man.rb
|
154
|
+
- lib/front_man/engine.rb
|
155
|
+
- lib/front_man/version.rb
|
156
|
+
homepage: http://dvelp.co.uk/
|
157
|
+
licenses:
|
158
|
+
- MIT
|
159
|
+
metadata: {}
|
160
|
+
post_install_message:
|
161
|
+
rdoc_options: []
|
162
|
+
require_paths:
|
163
|
+
- lib
|
164
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
165
|
+
requirements:
|
166
|
+
- - ">="
|
167
|
+
- !ruby/object:Gem::Version
|
168
|
+
version: '0'
|
169
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
requirements: []
|
175
|
+
rubyforge_project:
|
176
|
+
rubygems_version: 2.4.6
|
177
|
+
signing_key:
|
178
|
+
specification_version: 4
|
179
|
+
summary: The DVELP frontend framework.
|
180
|
+
test_files: []
|
181
|
+
has_rdoc:
|