-
Notifications
You must be signed in to change notification settings - Fork 0
/
mtl.gemspec
53 lines (44 loc) · 2.23 KB
/
mtl.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mtl/version'
Gem::Specification.new do |spec|
spec.name = 'mtl'
spec.version = Mtl::VERSION
spec.authors = ['Marco Plüss', 'Lukas Westermann', 'Loris Gavillet']
spec.email = ['[email protected]', '[email protected]']
spec.summary = 'Rails gem to package materialize-css for reuse between projects.'
spec.description = 'Reusable components and Rails helpers on top of materialize-css ' \
'and material-design-icons.'
spec.homepage = 'https://github.com/at-point/mtl'
spec.license = 'MIT'
spec.files = %w{.gitignore Gemfile Rakefile LICENSE.txt README.md
mtl.gemspec package.json} +
Dir['{lib,app,bin,vendor,spec}/**/*.{rb,erb,js,coffee,scss,gif,jpg,svg,eot,ttf,woff,woff2,ijmap}']
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = %w{lib}
spec.required_ruby_version = '>= 2.2'
spec.add_dependency 'railties', '>= 4.2', '< 6'
spec.add_development_dependency 'bundler', '~> 1.11'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'yard', '~> 0.8'
spec.add_development_dependency 'rspec', '> 3.0'
spec.add_development_dependency 'actionview'
spec.add_development_dependency 'simple_form', '>= 3.3'
spec.post_install_message = "
Some component have been extend with configuration variables, don't forget to re-generate the scss configuration or
add the following values to your existing one:
$chip-height: 32px !default;
$chip-line-height: 32px !default;
$chip-font-size: 13px !default;
$chip-font-weight: 500 !default;
$chip-border-radius: 16px !default;
$badge-height: 22px !default;
$collapsible-line-height: $collapsible-height !default;
$navbar-line-height: $navbar-height !default;
$navbar-line-height-mobile: $navbar-height-mobile !default;
$sidenav-line-height: $sidenav-item-height !default;
$collection-line-height: 1.5rem !default;
$tabs-text-color-not-active: $primary-color !default;"
end