File: ice_nine.gemspec

package info (click to toggle)
ruby-ice-nine 0.11.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 432 kB
  • sloc: ruby: 1,006; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 711 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# encoding: utf-8

require File.expand_path('../lib/ice_nine/version', __FILE__)

Gem::Specification.new do |gem|
  gem.name        = 'ice_nine'
  gem.version     = IceNine::VERSION.dup
  gem.authors     = ['Dan Kubb']
  gem.email       = %w[dan.kubb@gmail.com]
  gem.description = 'Deep Freeze Ruby Objects'
  gem.summary     = gem.description
  gem.homepage    = 'https://github.com/dkubb/ice_nine'
  gem.license     = 'MIT'

  gem.require_paths    = %w[lib]
  gem.files            = `git ls-files`.split($/)
  gem.test_files       = `git ls-files -- spec/{unit,integration}`.split($/)
  gem.extra_rdoc_files = %w[LICENSE README.md TODO]

  gem.add_development_dependency('bundler', '~> 1.6', '>= 1.6.1')
end