forked from sevenwire/forgery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgery.gemspec
More file actions
17 lines (16 loc) · 796 Bytes
/
forgery.gemspec
File metadata and controls
17 lines (16 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'forgery/version'
Gem::Specification.new do |s|
s.name = "forgery"
s.version = Forgery::VERSION
s.authors = ["Nathan Sutton", "Brandon Arbini"]
s.email = ["nate@zencoder.com", "brandon@zencoder.com"]
s.homepage = "http://github.com/sevenwire/forgery"
s.summary = "Easy and customizable generation of forged data."
s.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."
s.rubyforge_project = "forgery"
s.add_development_dependency "rspec"
s.files = Dir.glob("{generators,lib}/**/*") + %w(LICENSE README.markdown Rakefile)
s.require_path = 'lib'
end