publication/journals.gemspec

20 lines
593 B
Ruby

$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "journals/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "journals"
s.version = Journals::VERSION
s.authors = ["Archer Lin"]
s.email = ["twbcs@yahoo.com.tw"]
s.homepage = "https://github.com/twbcs"
s.summary = "Journals."
s.description = "Description of Journals."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
end