transaction-simple 1.4.0 → 1.4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gemtest +0 -0
- data/{History.txt → History.rdoc} +16 -19
- data/Licence.rdoc +23 -0
- data/Manifest.txt +7 -6
- data/{Readme.txt → README.rdoc} +55 -40
- data/Rakefile +14 -112
- data/lib/transaction-simple.rb +5 -0
- data/lib/transaction/simple.rb +110 -77
- data/lib/transaction/simple/group.rb +82 -92
- data/lib/transaction/simple/threadsafe.rb +25 -35
- data/lib/transaction/simple/threadsafe/group.rb +9 -19
- data/research/instance_variable_defined.rb +22 -0
- data/research/special-dumpable-string.rb +42 -0
- data/research/special-dumpable.rb +130 -0
- data/test/test_broken_graph.rb +4 -14
- data/test/test_transaction_simple.rb +4 -14
- data/test/test_transaction_simple_group.rb +4 -14
- data/test/test_transaction_simple_threadsafe.rb +4 -14
- metadata +174 -58
- data/Install.txt +0 -21
- data/Licence.txt +0 -25
- data/setup.rb +0 -1585
- data/test/test_all.rb +0 -25
data/test/test_all.rb
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#--
|
3
|
-
# Transaction::Simple
|
4
|
-
# Simple object transaction support for Ruby
|
5
|
-
# http://rubyforge.org/projects/trans-simple/
|
6
|
-
# Version 1.4.0
|
7
|
-
#
|
8
|
-
# Licensed under a MIT-style licence. See Licence.txt in the main
|
9
|
-
# distribution for full licensing information.
|
10
|
-
#
|
11
|
-
# Copyright (c) 2003 - 2007 Austin Ziegler
|
12
|
-
#
|
13
|
-
# $Id: test_all.rb 55 2007-02-03 23:29:34Z austin $
|
14
|
-
#++
|
15
|
-
|
16
|
-
$LOAD_PATH.unshift("#{File.dirname(__FILE__)}/../lib") if __FILE__ == $0
|
17
|
-
|
18
|
-
$stderr.puts "Checking for test cases:"
|
19
|
-
|
20
|
-
Dir[File.join(File.dirname($0), 'test_*.rb')].each do |testcase|
|
21
|
-
next if File.basename(testcase) == File.basename(__FILE__)
|
22
|
-
$stderr.puts "\t#{testcase}"
|
23
|
-
load testcase
|
24
|
-
end
|
25
|
-
$stderr.puts " "
|