Alessio Caiazza is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

nolith / habtm-with-deferred-save

Rails plugin. Defers saving the records you add to habtm association until you call model.save, allowing validation in the style of normal attributes.

Clone this repository (size: 195.2 KB): HTTPS / SSH
hg clone https://bitbucket.org/nolith/habtm-with-deferred-save
hg clone ssh://hg@bitbucket.org/nolith/habtm-with-deferred-save

habtm-with-deferred-save / has_and_belongs_to_many_with_deferred_save.gemspec

commit
2a1163d8f30c
parent
76dc42274970
branch
default

Regenerated gemspec for version 0.2.0

1
6f8d44db522b
# Generated by jeweler
2
6f8d44db522b
# DO NOT EDIT THIS FILE DIRECTLY
3
6f8d44db522b
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
6f8d44db522b
# -*- encoding: utf-8 -*-
5
6f8d44db522b
6
6f8d44db522b
Gem::Specification.new do |s|
7
6f8d44db522b
  s.name = %q{has_and_belongs_to_many_with_deferred_save}
8
2a1163d8f30c
  s.version = "0.2.0"
9
6f8d44db522b
10
6f8d44db522b
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
6f8d44db522b
  s.authors = ["Tyler Rick", "Alessio Caiazza"]
12
6f8d44db522b
  s.date = %q{2010-02-25}
13
6f8d44db522b
  s.email = %q{github.com@tylerrick.com}
14
6f8d44db522b
  s.files = [
15
6f8d44db522b
    ".gitignore",
16
6f8d44db522b
     "Rakefile",
17
6f8d44db522b
     "Readme.markdown",
18
6f8d44db522b
     "VERSION",
19
6f8d44db522b
     "has_and_belongs_to_many_with_deferred_save.gemspec",
20
6f8d44db522b
     "init.rb",
21
6f8d44db522b
     "install.rb",
22
6f8d44db522b
     "lib/has_and_belongs_to_many_with_deferred_save.rb",
23
6f8d44db522b
     "spec/.gitignore",
24
6f8d44db522b
     "spec/db/database.yml",
25
6f8d44db522b
     "spec/db/schema.rb",
26
6f8d44db522b
     "spec/has_and_belongs_to_many_with_deferred_save_spec.rb",
27
2a1163d8f30c
     "spec/models/door.rb",
28
6f8d44db522b
     "spec/models/person.rb",
29
6f8d44db522b
     "spec/models/room.rb",
30
6f8d44db522b
     "spec/spec_helper.rb",
31
6f8d44db522b
     "uninstall.rb"
32
6f8d44db522b
  ]
33
6f8d44db522b
  s.homepage = %q{http://github.com/TylerRick/has_and_belongs_to_many_with_deferred_save}
34
6f8d44db522b
  s.rdoc_options = ["--charset=UTF-8"]
35
6f8d44db522b
  s.require_paths = ["lib"]
36
6f8d44db522b
  s.rubygems_version = %q{1.3.5}
37
6f8d44db522b
  s.summary = %q{Make ActiveRecord defer/postpone saving the records you add to an habtm (has_and_belongs_to_many) association until you call model.save, allowing validation in the style of normal attributes.}
38
6f8d44db522b
  s.test_files = [
39
2a1163d8f30c
    "spec/models/door.rb",
40
2a1163d8f30c
     "spec/models/room.rb",
41
6f8d44db522b
     "spec/models/person.rb",
42
6f8d44db522b
     "spec/has_and_belongs_to_many_with_deferred_save_spec.rb",
43
6f8d44db522b
     "spec/spec_helper.rb",
44
6f8d44db522b
     "spec/db/schema.rb"
45
6f8d44db522b
  ]
46
6f8d44db522b
47
6f8d44db522b
  if s.respond_to? :specification_version then
48
6f8d44db522b
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
49
6f8d44db522b
    s.specification_version = 3
50
6f8d44db522b
51
6f8d44db522b
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
52
6f8d44db522b
      s.add_runtime_dependency(%q<activerecord>, [">= 0"])
53
6f8d44db522b
      s.add_development_dependency(%q<rspec>, [">= 0"])
54
6f8d44db522b
    else
55
6f8d44db522b
      s.add_dependency(%q<activerecord>, [">= 0"])
56
6f8d44db522b
      s.add_dependency(%q<rspec>, [">= 0"])
57
6f8d44db522b
    end
58
6f8d44db522b
  else
59
6f8d44db522b
    s.add_dependency(%q<activerecord>, [">= 0"])
60
6f8d44db522b
    s.add_dependency(%q<rspec>, [">= 0"])
61
6f8d44db522b
  end
62
6f8d44db522b
end
63
6f8d44db522b