-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcroupier.gemspec
25 lines (20 loc) · 1009 Bytes
/
croupier.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
25
# encoding: utf-8
require File.expand_path "#{File.dirname(__FILE__)}/lib/croupier/version"
Gem::Specification.new do |s|
s.name = 'croupier'
s.version = Croupier::VERSION
s.platform = Gem::Platform::RUBY
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Samples of random numbers with specific probability distributions"
s.description = "Croupier is a Ruby gem to generate a random sample of numbers with a given probability distribution."
s.authors = ['Juanjo Bazán', 'Sergio Arbeo']
s.email = ["jjbazan@gmail.com"]
s.homepage = 'https://github.com/xuanxu/croupier'
s.license = 'MIT'
s.has_rdoc = true
s.rdoc_options = ['--main', 'README.rdoc', '--charset=UTF-8']
s.files = %w(MIT-LICENSE.txt README.md Rakefile RUNNING_TESTS.md) + Dir.glob("{lib/**/*}") & `git ls-files -z`.split("\0")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end