-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathnamey.gemspec
35 lines (29 loc) · 1.15 KB
/
namey.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
26
27
28
29
30
31
32
33
34
35
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "namey/version"
Gem::Specification.new do |s|
s.name = "namey"
s.version = Namey::VERSION
s.authors = ["Colin Mitchell"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/muffinista/namey"
s.summary = %q{Simple name generator based on US Census Data}
s.description = %q{Simple name generator, which can generate names based on US Census Data}
s.rubyforge_project = "namey"
s.files = `git ls-files`.split("\n")
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"]
if RUBY_PLATFORM == "java"
s.platform = "java"
sqlite = "jdbc-sqlite3"
else
s.platform = Gem::Platform::RUBY
sqlite = "sqlite3"
end
s.add_development_dependency(%q<rake>, [">= 0"])
s.add_development_dependency(%q<rspec>, [">= 3"])
s.add_runtime_dependency(%q<sequel>, ["~> 5.73.0"])
s.add_runtime_dependency(sqlite, [">= 0"])
s.add_development_dependency(%q<yard>, [">= 0"])
end