# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "babynames/version" Gem::Specification.new do |s| s.name = "babynames" s.version = Babynames::VERSION s.authors = ["Jordan Carter"] s.email = ["jordan.d.carter@gmail.com"] s.homepage = %q{http://github.com/jordandcarter/babynames} s.summary = %q{Quickly and easily get random names for things like test} s.description = %q{Easily name your baby! Or if you're a dev, make some tests with names better than test1, test2, testy. This gem gives you the ability to randomly create plausable usernames, names, emails without any hassle. Useful for seeding development data.} s.rubyforge_project = "babynames" 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"] # specify any dependencies here; for example: s.add_development_dependency "shoulda" # s.add_runtime_dependency "rest-client" end