-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfortitude.gemspec
32 lines (27 loc) · 1.02 KB
/
fortitude.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'fortitude-sass/version'
Gem::Specification.new do |s|
s.name = 'fortitude-sass'
s.version = Fortitude::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Aaron Reisman']
s.email = ['[email protected]']
s.license = 'MIT'
s.homepage = 'https://github.com/fortitude/fortitude'
s.summary = 'Fortitude Sass Framework'
s.description = <<-DESC
Fortitude provides a comprehensive framework of
Rock solid CSS Patterns and Components.
DESC
s.rubyforge_project = 'fortitude-sass'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.add_runtime_dependency('sass', '~> 3.3')
s.add_runtime_dependency('autoprefixer-rails')
s.add_runtime_dependency('execjs')
s.add_dependency('thor')
s.add_development_dependency('rake')
end