- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring_buffer.gemspec
More file actions
Latest commit
26 lines (22 loc) · 940 Bytes
/
Copy pathstring_buffer.gemspec
File metadata and controls
26 lines (22 loc) · 940 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
# coding: utf-8
lib=File.expand_path('../lib',__FILE__)
$LOAD_PATH.unshift(lib)unless $LOAD_PATH.include?(lib)
require'string_buffer/version'
Gem::Specification.newdo |spec|
spec.name="string_buffer"
spec.version=StringBuffer::VERSION
spec.authors=["Dylan Thacker-Smith"]
spec.email=["Dylan.Smith@shopify.com"]
spec.summary="Create a String a given initial capacity"
spec.homepage="https://github.com/dylanahsmith/ruby-string-buffer"
spec.license="MIT"
spec.files=`git ls-files -z`.split("\x0")
spec.test_files=spec.files.grep(%r{^(test)/})
spec.require_paths=["lib"]
spec.add_development_dependency"bundler","~> 1.5"
spec.add_development_dependency"rake"
ifdefined?(RUBY_ENGINE) && RUBY_ENGINE == 'ruby'
spec.extensions=['ext/string_buffer/extconf.rb']
spec.add_development_dependency'rake-compiler'
end
end