File: mime.gemspec

package info (click to toggle)
ruby-mime 0.4.4-2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 284 kB
  • sloc: ruby: 1,187; xml: 17; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 764 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version = File.read('./lib/mime.rb')[/VERSION = '(.*)'/, 1]

Gem::Specification.new('mime', version) do |s|
  s.author      = 'Clint Pachl'
  s.email       = 'pachl@ecentryx.com'
  s.homepage    = 'https://ecentryx.com/gems/mime'
  s.license     = 'ISC'
  s.summary     = 'Multipurpose Internet Mail Extensions (MIME) Library'
  s.description = <<-EOF
A library for building RFC compliant Multipurpose Internet Mail Extensions
(MIME) messages. It can be used to construct standardized MIME messages for use
in client/server communications, such as Internet mail or HTTP
multipart/form-data transactions.
  EOF
  s.files       = Dir['README.rdoc', 'Rakefile', 'mime.gemspec',
                      'lib/**/*.rb', 'test/**/*']
  s.test_files  = Dir['test/*.rb']
end