Rakefile
changeset 14 cba9fb39bcdb
parent 13 a03c08c289e9
child 15 a38e6916504c
equal deleted inserted replaced
13:a03c08c289e9 14:cba9fb39bcdb
    43 	s.bindir       = 'bin'
    43 	s.bindir       = 'bin'
    44 	s.files        = File.read( __FILE__ ).split( /^__END__/, 2 ).last.split
    44 	s.files        = File.read( __FILE__ ).split( /^__END__/, 2 ).last.split
    45 	# s.executables  = %w[]
    45 	# s.executables  = %w[]
    46 	s.description  = <<-EOF
    46 	s.description  = <<-EOF
    47 This is a ruby interface for interacting with ezmlm-idx, an email list
    47 This is a ruby interface for interacting with ezmlm-idx, an email list
    48 manager for use with the Qmail MTA.  (The -idx provides an extended
    48 manager for use with the Qmail MTA, and the messages contained therein.
    49 feature set over the initial ezmlm environment), and the messages contained therein.
    49 (The -idx provides an extended feature set over the original ezmlm
       
    50 environment.)
    50 	EOF
    51 	EOF
    51 	s.required_ruby_version = '>= 2'
    52 	s.required_ruby_version = '>= 2.1'
    52 
    53 
    53 	s.add_dependency 'loggability', "~> 0.13"
       
    54 	s.add_dependency 'mail', "~> 2.6"
    54 	s.add_dependency 'mail', "~> 2.6"
    55 end
    55 end
    56 
    56 
    57 Gem::PackageTask.new( spec ) do |pkg|
    57 Gem::PackageTask.new( spec ) do |pkg|
    58 	pkg.need_zip = true
    58 	pkg.need_zip = true
   113 
   113 
   114 ########################################################################
   114 ########################################################################
   115 ### M A N I F E S T
   115 ### M A N I F E S T
   116 ########################################################################
   116 ########################################################################
   117 __END__
   117 __END__
       
   118 lib/ezmlm/list.rb
       
   119 lib/ezmlm.rb
   118 
   120