-
Notifications
You must be signed in to change notification settings - Fork 12
/
grit_ext.gemspec
24 lines (20 loc) · 914 Bytes
/
grit_ext.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/grit_ext/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Saito"]
gem.email = ["[email protected]"]
gem.description = %q{the grit's utf-8 support}
gem.summary = %q{gives grit utf-8 support}
gem.homepage = "https://github.com/saitowu/grit_ext"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "grit_ext"
gem.require_paths = ["lib"]
gem.version = GritExt.version
gem.add_dependency("charlock_holmes", "~> 0.6.9")
gem.add_development_dependency("rspec", "~> 2.11")
gem.add_development_dependency("grit", "~> 2.5")
gem.add_development_dependency("rake")
gem.add_development_dependency("pry")
end