-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstradivari.gemspec
38 lines (32 loc) · 1.26 KB
/
stradivari.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'stradivari/version'
Gem::Specification.new do |spec|
spec.name = "stradivari"
spec.version = Stradivari::VERSION
spec.authors = ["Lleïr Borràs Metje", "Marcello Barnaba", "Ivan Turkovic"]
spec.summary = %q{Enterprise toolkit for Ruby/HAML/Bootstrap3 web apps}
spec.description = %q{
This Gem combines HAML and Bootstrap 3 to provide you easy generators for:
- HTML Tables
- CSV Tables
- XLS Tables
- Tabbed layouts
- Definition Lists
- Filter forms
}
spec.homepage = "https://github.com/ifad/stradivari"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "rake"
spec.add_runtime_dependency 'pg_search'
spec.add_runtime_dependency 'ransack'
spec.add_runtime_dependency 'haml'
spec.add_runtime_dependency 'caxlsx'
end