forked from ruby/iconv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiconv.gemspec
More file actions
21 lines (19 loc) · 792 Bytes
/
iconv.gemspec
File metadata and controls
21 lines (19 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'iconv/version'
Gem::Specification.new do |gem|
gem.name = "iconv"
gem.version = Iconv::VERSION
gem.authors = ["NARUSE, Yui"]
gem.email = ["naruse@airemix.jp"]
gem.description = %q{iconv wrapper library}
gem.summary = %q{iconv wrapper library}
gem.homepage = "https://github.com/ruby/iconv"
gem.files = `git ls-files`.split($/)
gem.extensions = ['ext/iconv/extconf.rb']
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.required_ruby_version = '>= 1.8.7'
gem.require_paths = ["lib"]
end