public
Description: Word to your object mother.
Homepage: http://nakajima.github.com/fixjour/
Clone URL: git://github.com/nakajima/fixjour.git
fixjour / fixjour.gemspec
100644 47 lines (42 sloc) 1.394 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
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{fixjour}
  s.version = "0.1.5"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Pat Nakajima"]
  s.date = %q{2008-12-29}
  s.email = %q{patnakajima@gmail.com}
  s.files = [
    "lib/core_ext",
    "lib/core_ext/hash.rb",
    "lib/core_ext/object.rb",
    "lib/fixjour",
    "lib/fixjour/builders.rb",
    "lib/fixjour/counter.rb",
    "lib/fixjour/definitions.rb",
    "lib/fixjour/deprecation.rb",
    "lib/fixjour/errors.rb",
    "lib/fixjour/generator.rb",
    "lib/fixjour/merging_proxy.rb",
    "lib/fixjour/overrides_hash.rb",
    "lib/fixjour/redundant_check.rb",
    "lib/fixjour/verify.rb",
    "lib/fixjour.rb"
  ]
  s.has_rdoc = true
  s.homepage = %q{http://github.com/nakajima/fixjour}
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.1}
  s.summary = %q{Object creation methods everyone already has}
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<activerecord>, [">= 0"])
    else
      s.add_dependency(%q<activerecord>, [">= 0"])
    end
  else
    s.add_dependency(%q<activerecord>, [">= 0"])
  end
end