fastruby 0.0.9 → 0.0.10

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/CHANGELOG CHANGED
@@ -1,3 +1,9 @@
1
+ 0.0.10 retry support (exceptions and blocks)
2
+
3
+ redo support
4
+
5
+ for each support
6
+
1
7
  0.0.9 Proc support
2
8
 
3
9
  Enhanced lambda, proc and Proc.new hook by using nodes for method identification at runtime instead of method name
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ require "rspec/core/rake_task"
7
7
 
8
8
  spec = Gem::Specification.new do |s|
9
9
  s.name = 'fastruby'
10
- s.version = '0.0.9'
10
+ s.version = '0.0.10'
11
11
  s.author = 'Dario Seminara'
12
12
  s.email = 'robertodarioseminara@gmail.com'
13
13
  s.platform = Gem::Platform::RUBY
@@ -21,14 +21,4 @@ along with fastruby. if not, see <http://www.gnu.org/licenses/>.
21
21
  module FastRuby
22
22
  class TypeMismatchAssignmentException < Exception
23
23
  end
24
-
25
- class Context
26
- class UnwindFastrubyFrame < Exception
27
- def initialize(ex,target_frame,return_value)
28
- @ex = ex
29
- @target_frame = target_frame
30
- @return_value = return_value
31
- end
32
- end
33
- end
34
24
  end