public
Description: Awesome gem for modeling your domain and storing it in mongo
Homepage: http://mongomapper.com
Clone URL: git://github.com/jnunemaker/mongomapper.git
Click here to lend your support to: mongomapper and make a donation at www.pledgie.com !
mongomapper / mongomapper.gemspec
100644 92 lines (87 sloc) 3.171 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{mongomapper}
  s.version = "0.1.2"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["John Nunemaker"]
  s.date = %q{2009-07-03}
  s.email = %q{nunemaker@gmail.com}
  s.extra_rdoc_files = [
    "LICENSE",
     "README.rdoc"
  ]
  s.files = [
    ".gitignore",
     "History",
     "LICENSE",
     "README.rdoc",
     "Rakefile",
     "VERSION",
     "lib/mongomapper.rb",
     "lib/mongomapper/document.rb",
     "lib/mongomapper/embedded_document.rb",
     "lib/mongomapper/finder_options.rb",
     "lib/mongomapper/key.rb",
     "lib/mongomapper/rails_compatibility.rb",
     "lib/mongomapper/save_with_validation.rb",
     "lib/mongomapper/serialization.rb",
     "lib/mongomapper/serializers/json_serializer.rb",
     "mongomapper.gemspec",
     "test/serializers/test_json_serializer.rb",
     "test/test_associations.rb",
     "test/test_callbacks.rb",
     "test/test_document.rb",
     "test/test_embedded_document.rb",
     "test/test_finder_options.rb",
     "test/test_helper.rb",
     "test/test_key.rb",
     "test/test_mongomapper.rb",
     "test/test_rails_compatibility.rb",
     "test/test_serializations.rb",
     "test/test_validations.rb"
  ]
  s.has_rdoc = true
  s.homepage = %q{http://github.com/jnunemaker/mongomapper}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{mongomapper}
  s.rubygems_version = %q{1.3.1}
  s.summary = %q{Awesome gem for modeling your domain and storing it in mongo}
  s.test_files = [
    "test/serializers/test_json_serializer.rb",
     "test/test_associations.rb",
     "test/test_callbacks.rb",
     "test/test_document.rb",
     "test/test_embedded_document.rb",
     "test/test_finder_options.rb",
     "test/test_helper.rb",
     "test/test_key.rb",
     "test/test_mongomapper.rb",
     "test/test_rails_compatibility.rb",
     "test/test_serializations.rb",
     "test/test_validations.rb"
  ]
 
  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<activesupport>, [">= 0"])
      s.add_runtime_dependency(%q<mongodb-mongo>, ["= 0.9"])
      s.add_runtime_dependency(%q<jnunemaker-validatable>, ["= 1.7.0"])
      s.add_development_dependency(%q<mocha>, ["= 0.9.4"])
      s.add_development_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
    else
      s.add_dependency(%q<activesupport>, [">= 0"])
      s.add_dependency(%q<mongodb-mongo>, ["= 0.9"])
      s.add_dependency(%q<jnunemaker-validatable>, ["= 1.7.0"])
      s.add_dependency(%q<mocha>, ["= 0.9.4"])
      s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
    end
  else
    s.add_dependency(%q<activesupport>, [">= 0"])
    s.add_dependency(%q<mongodb-mongo>, ["= 0.9"])
    s.add_dependency(%q<jnunemaker-validatable>, ["= 1.7.0"])
    s.add_dependency(%q<mocha>, ["= 0.9.4"])
    s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
  end
end