-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcompendium.gemspec
28 lines (25 loc) · 1.11 KB
/
compendium.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'compendium/version'
Gem::Specification.new do |gem|
gem.name = "compendium"
gem.version = Compendium::VERSION
gem.authors = ["Daniel Vandersluis"]
gem.email = ["dvandersluis@selfmgmt.com"]
gem.description = %q{Ruby on Rails reporting framework}
gem.summary = %q{Ruby on Rails reporting framework}
gem.homepage = "https://github.com/dvandersluis/compendium"
gem.license = "MIT"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'rails', '>= 3.0.0'
gem.add_dependency 'sass-rails', '>= 3.0.0'
gem.add_dependency 'compass-rails', '>= 1.0.0'
gem.add_dependency 'collection_of', '1.0.6'
gem.add_dependency 'inheritable_attr', '>= 1.0.0'
gem.add_development_dependency 'rake', '> 11.0.1'
gem.add_development_dependency 'rspec', '~> 3.7.0'
end