forked from patternfly/patternfly-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
patternfly-sass.gemspec
31 lines (28 loc) · 999 Bytes
/
patternfly-sass.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'patternfly-sass/version'
Gem::Specification.new do |s|
s.name = 'patternfly-sass'
s.version = Patternfly::VERSION
s.authors = ['Dávid Halász', 'Alex Wood']
s.email = '[email protected]'
s.summary = "Red Hat's Patternfly, converted to Sass and ready to drop into Rails"
s.homepage = 'https://github.com/Patternfly/patternfly'
s.license = 'Apache-2.0'
s.add_runtime_dependency 'sassc', "> 2.0.1", "< 3.0"
s.add_runtime_dependency 'bootstrap-sass', '~> 3.4.0'
s.add_runtime_dependency 'font-awesome-sass', '>= 4.6.2', "< 6.0"
s.files = [
'patternfly-sass.gemspec',
'LICENSE.txt',
'README.md',
'CODE_OF_CONDUCT.md',
'QUICKSTART.md',
'OPEN_SOURCE_LICENCES.txt',
Dir.glob('lib/**/*'),
Dir.glob('dist/sass/**/*'),
Dir.glob('dist/js/**/*'),
Dir.glob('dist/fonts/**/*'),
Dir.glob('dist/img/**/*')
].flatten
end