1
0
Fork 0
burden/burden_web/burden_web.gemspec

24 lines
916 B
Ruby
Raw Normal View History

2013-06-07 10:20:01 +00:00
$:.push File.expand_path('../lib', __FILE__)
require 'burden_web/version'
2013-06-04 18:59:18 +00:00
2013-06-07 10:20:01 +00:00
Gem::Specification.new do |spec|
spec.name = 'burden_web'
spec.version = BurdenWeb::VERSION
spec.authors = ['Gregory Eremin']
spec.email = ['magnolia_fan@me.com']
spec.summary = 'A web interface for Burden'
spec.description = 'Burden is a manager and statistics collector for Rake tasks. It comes with this web interface.'
spec.homepage = 'https://github.com/magnolia-fan/burden'
spec.license = 'MIT'
2013-06-04 18:59:18 +00:00
2013-06-07 10:20:01 +00:00
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(/^bin\//){ |f| File.basename(f) }
spec.test_files = spec.files.grep(/^spec\//)
2013-06-04 18:59:18 +00:00
2013-06-07 10:20:01 +00:00
spec.add_dependency 'rails', '>= 3.2'
spec.add_development_dependency 'burden', "= #{BurdenWeb::VERSION}"
2013-06-04 18:59:18 +00:00
2013-06-07 10:20:01 +00:00
spec.add_development_dependency 'sqlite3', '>= 0'
spec.add_development_dependency 'awesome_print', '>= 0'
2013-06-04 18:59:18 +00:00
end