2018-10-04 02:47:23 +00:00
|
|
|
$:.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"]
|
2018-10-04 05:29:27 +00:00
|
|
|
s.homepage = "https://github.com/twbcs"
|
2018-10-04 02:47:23 +00:00
|
|
|
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
|