Skip to content

Commit 3f683bf

Browse files
committed
Updating version, readme and gemspec - it's time for a new release.
1 parent 6a2488b commit 3f683bf

3 files changed

Lines changed: 11 additions & 9 deletions

File tree

README.textile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,4 @@ This version (maintained by Pat Allan) includes the following patches:
5959
* Exception propagation ("George Ogata":http://github.com/oggy/)
6060
* Keeping callbacks focused on the correct transactions ("Benjamin Stein":http://benjaminste.in/)
6161
* Using savepoints for test helper ("Lars Klevan":http://www.linkedin.com/in/larsklevan and "Joel Chippindale":http://blog.monkeysthumb.org/)
62+
* Only tracking objects from classes that have appropriate callbacks; Adding @after/before_commit_on_save@ to cover creates and updates but not destroys ("Jason Weathered":http://jasoncodes.com/)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.6
1+
1.0.7

after_commit.gemspec

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
Gem::Specification.new do |s|
77
s.name = %q{after_commit}
8-
s.version = "1.0.6"
8+
s.version = "1.0.7"
99

1010
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1111
s.authors = ["Nick Muerdter", "David Yip", "Pat Allan"]
12-
s.date = %q{2010-02-16}
12+
s.date = %q{2010-05-20}
1313
s.description = %q{
1414
A Ruby on Rails plugin to add an after_commit callback. This can be used to trigger methods only after the entire transaction is complete.
1515
}
@@ -22,13 +22,14 @@ Gem::Specification.new do |s|
2222
"LICENSE",
2323
"lib/after_commit.rb",
2424
"lib/after_commit/active_record.rb",
25-
"lib/after_commit/connection_adapters.rb",
26-
"lib/after_commit/test_bypass.rb"
25+
"lib/after_commit/active_support_callbacks.rb",
26+
"lib/after_commit/after_savepoint.rb",
27+
"lib/after_commit/connection_adapters.rb"
2728
]
2829
s.homepage = %q{http://github.com/freelancing-god/after_commit}
2930
s.rdoc_options = ["--charset=UTF-8"]
3031
s.require_paths = ["lib"]
31-
s.rubygems_version = %q{1.3.5}
32+
s.rubygems_version = %q{1.3.6}
3233
s.summary = %q{after_commit callback for ActiveRecord}
3334
s.test_files = [
3435
"test/after_commit_test.rb",
@@ -42,14 +43,14 @@ Gem::Specification.new do |s|
4243

4344
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
4445
s.add_runtime_dependency(%q<activerecord>, [">= 0"])
45-
s.add_development_dependency(%q<shoulda>, [">= 0"])
46+
s.add_development_dependency(%q<sqlite3-ruby>, [">= 0"])
4647
else
4748
s.add_dependency(%q<activerecord>, [">= 0"])
48-
s.add_dependency(%q<shoulda>, [">= 0"])
49+
s.add_dependency(%q<sqlite3-ruby>, [">= 0"])
4950
end
5051
else
5152
s.add_dependency(%q<activerecord>, [">= 0"])
52-
s.add_dependency(%q<shoulda>, [">= 0"])
53+
s.add_dependency(%q<sqlite3-ruby>, [">= 0"])
5354
end
5455
end
5556

0 commit comments

Comments
 (0)