forked from sevenwire/forgery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgery.gemspec
23 lines (19 loc) · 986 Bytes
/
forgery.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "forgery/version"
Gem::Specification.new do |spec|
spec.name = "forgery"
spec.version = Forgery::VERSION
spec.authors = ["Nathan Sutton", "Brandon Arbini", "Kamil Kieliszczyk"]
spec.homepage = "http://github.com/sevenwire/forgery"
spec.summary = "Easy and customizable generation of forged data."
spec.description = "Easy and customizable generation of forged data. Can be used as a gem or a rails plugin. Includes rails generators for creating your own forgeries."
spec.platform = Gem::Platform::RUBY
spec.required_rubygems_version = ">= 1.3.6"
spec.rubyforge_project = "forgery"
spec.files = `git ls-files`.split($/)
spec.test_files = `git ls-files spec`.split($/)
spec.require_paths = %w(lib)
spec.add_development_dependency "bundler", "~> 1.3"
end