public
Description: Strategies for cleaning databases in Ruby. Can be used to ensure a clean state for testing.
Homepage: http://gemcutter.org/gems/database_cleaner
Clone URL: git://github.com/bmabey/database_cleaner.git
database_cleaner / database_cleaner.gemspec
100644 69 lines (64 sloc) 2.383 kb
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
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{database_cleaner}
  s.version = "0.2.3"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Ben Mabey"]
  s.date = %q{2009-05-30}
  s.description = %q{Strategies for cleaning databases. Can be used to ensure a clean state for testing.}
  s.email = %q{ben@benmabey.com}
  s.extra_rdoc_files = [
    "LICENSE",
     "README.textile"
  ]
  s.files = [
    "History.txt",
     "README.textile",
     "Rakefile",
     "VERSION.yml",
     "cucumber.yml",
     "examples/features/example.feature",
     "examples/features/step_definitions/example_steps.rb",
     "examples/features/support/env.rb",
     "examples/lib/activerecord.rb",
     "examples/lib/datamapper.rb",
     "features/cleaning.feature",
     "features/step_definitions/database_cleaner_steps.rb",
     "features/support/env.rb",
     "lib/database_cleaner.rb",
     "lib/database_cleaner/active_record/transaction.rb",
     "lib/database_cleaner/active_record/truncation.rb",
     "lib/database_cleaner/configuration.rb",
     "lib/database_cleaner/cucumber.rb",
     "lib/database_cleaner/data_mapper/transaction.rb",
     "lib/database_cleaner/data_mapper/truncation.rb",
     "lib/database_cleaner/truncation_base.rb",
     "spec/database_cleaner/active_record/truncation_spec.rb",
     "spec/database_cleaner/configuration_spec.rb",
     "spec/spec.opts",
     "spec/spec_helper.rb"
  ]
  s.has_rdoc = true
  s.homepage = %q{http://github.com/bmabey/database_cleaner}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.2}
  s.summary = %q{Strategies for cleaning databases. Can be used to ensure a clean state for testing.}
  s.test_files = [
    "spec/spec_helper.rb",
     "spec/database_cleaner/configuration_spec.rb",
     "spec/database_cleaner/active_record/truncation_spec.rb",
     "examples/lib/datamapper.rb",
     "examples/lib/activerecord.rb",
     "examples/features/step_definitions/example_steps.rb",
     "examples/features/support/env.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