quirkey / static_model

ActiveRecord like functionalities for reading from YAML with a simple class implementation

This URL has Read+Write access

commit  b4d1181384006cf7b629ceb029551832caff51af
tree    e9b61be2ebd21b1ae5643e00ab0e3e43616f6ba9
parent  d65d004102cf5753a1416e043d9081b5505ee1c2 parent  33b413e762542b35e185695062f3933946fb2cd4
static_model / static_model.gemspec
100644 38 lines (34 sloc) 2.311 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
Gem::Specification.new do |s|
  s.name = %q{static_model}
  s.version = "0.2.1"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Aaron Quint"]
  s.date = %q{2008-12-03}
  s.description = %q{ActiveRecord like functionalities for reading from YAML with a simple class implementation}
  s.email = ["aaron@quirkey.com"]
  s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt"]
  s.files = ["History.txt", "License.txt", "Manifest.txt", "README.rdoc", "generators/static_model/USAGE", "generators/static_model/static_model_generator.rb", "generators/static_model/templates/model.rb.erb", "generators/static_model/templates/models.yml.erb", "lib/static_model.rb", "lib/static_model/active_record.rb", "lib/static_model/associations.rb", "lib/static_model/base.rb", "lib/static_model/comparable.rb", "lib/static_model/errors.rb", "lib/static_model/rails.rb", "lib/static_model/scope.rb", "lib/static_model/version.rb", "test/test_generator_helper.rb", "test/test_helper.rb", "test/test_static_model.rb", "test/test_static_model_associations.rb", "test/test_static_model_generator.rb", "test/test_static_model_scope.rb"]
  s.has_rdoc = true
  s.homepage = %q{http://quirkey.rubyforge.org}
  s.post_install_message = %q{}
  s.rdoc_options = ["--main", "README.txt"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{quirkey}
  s.rubygems_version = %q{1.2.0}
  s.summary = %q{ActiveRecord like functionalities for reading from YAML with a simple class implementation}
  s.test_files = ["test/test_generator_helper.rb", "test/test_helper.rb", "test/test_static_model.rb", "test/test_static_model_associations.rb", "test/test_static_model_generator.rb", "test/test_static_model_scope.rb"]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if current_version >= 3 then
      s.add_runtime_dependency(%q<activesupport>, [">= 2.1.0"])
      s.add_development_dependency(%q<hoe>, [">= 1.8.2"])
    else
      s.add_dependency(%q<activesupport>, [">= 2.1.0"])
      s.add_dependency(%q<hoe>, [">= 1.8.2"])
    end
  else
    s.add_dependency(%q<activesupport>, [">= 2.1.0"])
    s.add_dependency(%q<hoe>, [">= 1.8.2"])
  end
end