forked from smtlaissezfaire/fixturereplacement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixture_replacement.gemspec
126 lines (122 loc) · 5.59 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{fixture_replacement}
s.version = "3.0.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Scott Taylor"]
s.date = %q{2009-11-21}
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]}
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
".gitignore",
"CHANGELOG.rdoc",
"GPL_LICENSE",
"MIT_LICENSE",
"README.rdoc",
"Rakefile",
"TODO.rdoc",
"VERSION",
"contributions.rdoc",
"etc/bug_reports/2007_09_28_linoj.txt",
"etc/google_analytics",
"etc/patches/2007_09_14_default_model_name_with_arguments.diff",
"etc/patches/2007_10_14_active_record_specs.diff",
"etc/patches/2007_10_14_protected_attributes.diff",
"etc/patches/2007_10_14_send_patch.diff",
"etc/patches/2007_10_14_spelling_error_in_comments.diff",
"etc/patches/2007_10_17_protected_attributes_second_go.diff",
"etc/patches/2007_10_18_README.diff",
"etc/patches/2007_10_19_readme_tweak.diff",
"etc/patches/2007_10_19_silence_migration.diff",
"etc/patches/2007_10_25_changed_classify_to_camelize.diff",
"etc/patches/2007_11_20_fixture_replacement_generator_should_not_reload_environment_or_boot.patch",
"etc/patches/2007_11_20_string_random_refactor_and_extension.patch",
"etc/patches/2007_11_20_string_random_refactor_and_extension_v2.patch",
"fixture_replacement.gemspec",
"lib/fixture_replacement.rb",
"lib/fixture_replacement/attribute_builder.rb",
"lib/fixture_replacement/class_methods.rb",
"lib/fixture_replacement/method_generator.rb",
"lib/fixture_replacement/version.rb",
"lib/fr.rb",
"philosophy_and_bugs.rdoc",
"rake_tasks/code_quality.rb",
"rake_tasks/docs.rb",
"rake_tasks/gem.rb",
"rake_tasks/specs.rb",
"rake_tasks/tests.rb",
"rake_tasks/website.rb",
"spec/fixture_replacement/attribute_builder_spec.rb",
"spec/fixture_replacement/fixture_replacement_spec.rb",
"spec/fixture_replacement/fixtures/classes.rb",
"spec/fixture_replacement/fr_spec.rb",
"spec/fixture_replacement/integration/attr_protected_attributes_spec.rb",
"spec/fixture_replacement/integration/attributes_for_with_invalid_keys_spec.rb",
"spec/fixture_replacement/integration/attributes_from_spec_without_block.rb",
"spec/fixture_replacement/integration/create_method_spec.rb",
"spec/fixture_replacement/integration/cyclic_dependency_spec.rb",
"spec/fixture_replacement/integration/default_warnings_spec.rb",
"spec/fixture_replacement/integration/extend_spec.rb",
"spec/fixture_replacement/integration/has_and_belongs_to_many_spec.rb",
"spec/fixture_replacement/integration/new_method_spec.rb",
"spec/fixture_replacement/integration/private_methods_spec.rb",
"spec/fixture_replacement/integration/public_methods_spec.rb",
"spec/fixture_replacement/integration/valid_attributes_spec.rb",
"spec/fixture_replacement/integration/validation_spec.rb",
"spec/fixture_replacement/regressions/2008_01_21_random_string_with_sti_spec.rb",
"spec/fixture_replacement/version_spec.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/spec_helpers.rb",
"test/test_helper.rb",
"test/unit/user_test.rb"
]
s.homepage = %q{http://replacefixtures.rubyforge.org}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{The original fixture replacement solution for rails}
s.test_files = [
"spec/fixture_replacement/attribute_builder_spec.rb",
"spec/fixture_replacement/fixture_replacement_spec.rb",
"spec/fixture_replacement/fixtures/classes.rb",
"spec/fixture_replacement/fr_spec.rb",
"spec/fixture_replacement/integration/attr_protected_attributes_spec.rb",
"spec/fixture_replacement/integration/attributes_for_with_invalid_keys_spec.rb",
"spec/fixture_replacement/integration/attributes_from_spec_without_block.rb",
"spec/fixture_replacement/integration/create_method_spec.rb",
"spec/fixture_replacement/integration/cyclic_dependency_spec.rb",
"spec/fixture_replacement/integration/default_warnings_spec.rb",
"spec/fixture_replacement/integration/extend_spec.rb",
"spec/fixture_replacement/integration/has_and_belongs_to_many_spec.rb",
"spec/fixture_replacement/integration/new_method_spec.rb",
"spec/fixture_replacement/integration/private_methods_spec.rb",
"spec/fixture_replacement/integration/public_methods_spec.rb",
"spec/fixture_replacement/integration/valid_attributes_spec.rb",
"spec/fixture_replacement/integration/validation_spec.rb",
"spec/fixture_replacement/regressions/2008_01_21_random_string_with_sti_spec.rb",
"spec/fixture_replacement/version_spec.rb",
"spec/spec_helper.rb",
"spec/spec_helpers.rb",
"test/test_helper.rb",
"test/unit/user_test.rb"
]
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