1
0
Fork 0
burden/burden_web/burden_web.gemspec

25 lines
736 B
Ruby
Raw Normal View History

2013-06-04 18:59:18 +00:00
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
2013-06-06 18:55:21 +00:00
require "burden_web/version"
2013-06-04 18:59:18 +00:00
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
2013-06-06 18:55:21 +00:00
s.name = "burden_web"
s.version = BurdenWeb::VERSION
2013-06-04 18:59:18 +00:00
s.authors = ["TODO: Your name"]
s.email = ["TODO: Your email"]
s.homepage = "TODO"
2013-06-06 18:55:21 +00:00
s.summary = "TODO: Summary of BurdenWeb."
s.description = "TODO: Description of BurdenWeb."
2013-06-06 20:04:41 +00:00
s.license = 'MIT'
2013-06-04 18:59:18 +00:00
2013-06-06 20:04:41 +00:00
s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE", "Rakefile", "README.md"]
2013-06-04 18:59:18 +00:00
2013-06-06 14:15:38 +00:00
s.add_dependency 'rails', '>= 3.2'
2013-06-06 18:55:21 +00:00
s.add_development_dependency 'burden'
2013-06-04 18:59:18 +00:00
2013-06-06 14:15:38 +00:00
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'awesome_print'
2013-06-04 18:59:18 +00:00
end