-
Notifications
You must be signed in to change notification settings - Fork 4
/
fixture_replacement.gemspec
35 lines (32 loc) · 1.2 KB
/
fixture_replacement.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
Gem::Specification.new do |s|
s.name = %q{fixture_replacement}
s.version = "4.1.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Scott Taylor", "Stephen Schor"]
s.date = %q{2022-09-07}
s.description = %q{FixtureReplacement is a Rails plugin that provides a simple way to
quickly populate your test database with model objects without having to manage multiple,
brittle fixture files. You can easily set up complex object graphs (with models which
reference other models) and add new objects on the fly.
}
s.email = %q{[email protected] [email protected]}
s.files = Dir[
"{lib}/**/*.rb",
"*.rdoc",
"GPL_LICENSE",
"MIT_LICENSE",
"VERSION",
]
s.homepage = %q{https://github.com/smtlaissezfaire/fixturereplacement}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{The original fixture replacement solution for rails}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end