# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |gem| gem.name = "strftime_logger" gem.version = "0.0.2" gem.authors = ["Naotoshi Seo"] gem.email = ["sonots@gmail.com"] gem.description = %q{A logger treats log rotation in strftime fashion} gem.summary = %q{A logger treats log rotation in strftime fashion.} gem.homepage = "https://github.com/sonots/strftime-logger" 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"] end