summaryrefslogtreecommitdiffstats
path: root/lib/blink/client.rb
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-04-21 19:26:03 +0000
committerLuke Kanies <luke@madstop.com>2005-04-21 19:26:03 +0000
commit565554f47dccca357560ba96336b8bd4e3d2afe1 (patch)
treeaf2e1ae6273d106b279544e44747b329eeb12af6 /lib/blink/client.rb
parent9843da69eb90ba5029e3726e7c886bbcfe410cc9 (diff)
downloadpuppet-565554f47dccca357560ba96336b8bd4e3d2afe1.tar.gz
puppet-565554f47dccca357560ba96336b8bd4e3d2afe1.tar.xz
puppet-565554f47dccca357560ba96336b8bd4e3d2afe1.zip
finishing reorganization of base classes and such; there is now a clear tree heirarchy, with parents and children -- all tests pass on the types, but there are still some issues with client/server stuff
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@207 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/blink/client.rb')
-rw-r--r--lib/blink/client.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/blink/client.rb b/lib/blink/client.rb
index 207cd734b..e2539481f 100644
--- a/lib/blink/client.rb
+++ b/lib/blink/client.rb
@@ -7,6 +7,7 @@
require 'blink'
require 'blink/function'
require 'blink/type'
+require 'blink/transaction'
module Blink
class ClientError < RuntimeError; end
@@ -48,9 +49,9 @@ module Blink
# that means that we need, at the least:
# - a standard mechanism for specifying that an object is no-op
# - a standard object that is considered a rollback object
- objects.each { |obj|
- obj.evaluate
- }
+ #objects.each { |obj|
+ # obj.evaluate
+ #}
transaction = Blink::Transaction.new(objects)
transaction.run