forked from mojombo/bert
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbert.gemspec
More file actions
32 lines (26 loc) · 938 Bytes
/
bert.gemspec
File metadata and controls
32 lines (26 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
if ENV['DEVELOPMENT']
VERSION = `git describe --tags`.strip.gsub('-', '.')[1..-1]
else
VERSION = File.read('VERSION')
end
Gem::Specification.new do |s|
s.name = "bert"
s.version = VERSION
s.summary = %Q{BERT Serializiation for Ruby}
s.description = %Q{BERT Serializiation for Ruby}
s.license = "MIT"
s.email = "tom@mojombo.com"
s.homepage = "http://github.com/github/bert"
s.authors = ["Tom Preston-Werner"]
s.files = `git ls-files`.split("\n")
s.require_paths = ["lib", "ext"]
s.extensions = ["ext/bert/c/extconf.rb"]
s.add_dependency "mochilo", ">= 1.3", "!= 2.0"
s.add_development_dependency "thoughtbot-shoulda"
s.add_development_dependency "git"
s.add_development_dependency "rake"
s.add_development_dependency "rake-compiler", "~> 0.9.0"
s.add_development_dependency "yajl-ruby"
s.add_development_dependency "test-unit"
end