-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdimsum.gemspec
More file actions
19 lines (17 loc) · 816 Bytes
/
dimsum.gemspec
File metadata and controls
19 lines (17 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/dimsum/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Aaron Olson", "Steven Noble", "Camilo Lopez"]
gem.email = ["aaron.olson@shopify.com", "steven.noble@shopify.com", "camilo.lopez@shopify.com"]
gem.description = %q{dimsum is a very simple ruby script that performs reservoir sampling on the input file.}
gem.summary = %q{reservoir sampling}
gem.homepage = ""
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test)/})
gem.name = "dimsum"
gem.require_paths = ["lib"]
gem.bindir = 'bin'
gem.executables << 'dimsum'
gem.version = Dimsum::VERSION
end