forked from alienngator/cld2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cld2.gemspec
22 lines (18 loc) · 861 Bytes
/
cld2.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/cld/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Alessandro Dal Grande", "Jason Toy", "Lien Hoang"]
gem.email = ["jtoy@jtoy.net"]
gem.description = %q{Compact Language Detection for Ruby}
gem.summary = %q{Compact Language Detection for Ruby}
gem.homepage = "https://github.com/BanjoInc/cld2"
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.extensions = ["ext/cld/extconf.rb"]
gem.name = "cld2"
gem.require_paths = ["lib"]
gem.version = CLD::VERSION
gem.add_dependency "ffi", "~> 1.9.18"
gem.add_development_dependency "rspec", "~> 3.7.0"
end