sexp_processor 4.1.4 → 4.1.5

Sign up to get free protection for your applications and to get access to all the features.
data.tar.gz.sig CHANGED
@@ -1 +1 @@
1
- �˸5c8~g %Ɵ����<�z�v�����K4���l�_�ʍH��aPq��VЊL8��7��/�H8K z�Ք'4�� 0��M�����t�պ����l_�ٸ2��q����̊g��+N����nA!' ��v��x½���CXJ$]��ċ�EG���uM )��� K �r�6�+g�|�#��Hy��+5;�U������I �p�yVE1E��>k��ͫ-e&O�O9d+��0i
1
+ hA��MS�����e��geM!N7�����j@�qm��6}��W��rR�^�k`��h�=�oIS�|[;B���f�”Ȍ�bB��gz}i~�c�Ce0�p�)X��)��bh���¤�=y1$��*����q9*"�6߲!.g^���PuOfym+��Mn�5OMle+;�X����}a�%X�c5�t��#p��+�o��o3��q��53 3�0����m�#[�,��\����#��Ƿ��W,�H�#
data/History.txt CHANGED
@@ -1,3 +1,10 @@
1
+ === 4.1.5 / 2013-02-14
2
+
3
+ * 2 bug fixes:
4
+
5
+ * Clarified role of s method. Fixes #12.
6
+ * maglev: Workaround for bug in Array#shift
7
+
1
8
  === 4.1.4 / 2013-01-22
2
9
 
3
10
  * 1 minor enhancement:
data/lib/sexp.rb CHANGED
@@ -244,7 +244,7 @@ class Sexp < Array # ZenTest FULL
244
244
  def shift
245
245
  raise "I'm empty" if self.empty?
246
246
  super
247
- end if $DEBUG or $TESTING
247
+ end if ($DEBUG or $TESTING) unless (defined?(RUBY_ENGINE) and RUBY_ENGINE == "maglev")
248
248
 
249
249
  ##
250
250
  # Returns the bare bones structure of the sexp.
@@ -324,7 +324,7 @@ module SexpMatchSpecials
324
324
  end
325
325
 
326
326
  ##
327
- # This is just a stupid shortcut to make indentation much cleaner.
327
+ # This is a very important shortcut to make using Sexps much more awesome.
328
328
 
329
329
  def s(*args)
330
330
  Sexp.new(*args)
@@ -33,7 +33,7 @@ require 'sexp'
33
33
 
34
34
  class SexpProcessor
35
35
 
36
- VERSION = '4.1.4'
36
+ VERSION = '4.1.5'
37
37
 
38
38
  ##
39
39
  # Automatically shifts off the Sexp type before handing the
data/test/test_sexp.rb CHANGED
@@ -254,6 +254,8 @@ class TestSexp < SexpTestCase # ZenTest FULL
254
254
  end
255
255
 
256
256
  def test_shift
257
+ skip "https://github.com/MagLev/maglev/issues/250" if maglev?
258
+
257
259
  assert_equal(1, @sexp.shift)
258
260
  assert_equal(2, @sexp.shift)
259
261
  assert_equal(3, @sexp.shift)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sexp_processor
3
3
  version: !ruby/object:Gem::Version
4
- hash: 51
4
+ hash: 49
5
5
  prerelease:
6
6
  segments:
7
7
  - 4
8
8
  - 1
9
- - 4
10
- version: 4.1.4
9
+ - 5
10
+ version: 4.1.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ryan Davis
@@ -36,7 +36,7 @@ cert_chain:
36
36
  FBHgymkyj/AOSqKRIpXPhjC6
37
37
  -----END CERTIFICATE-----
38
38
 
39
- date: 2013-01-23 00:00:00 Z
39
+ date: 2013-02-15 00:00:00 Z
40
40
  dependencies:
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: minitest
@@ -46,11 +46,11 @@ dependencies:
46
46
  requirements:
47
47
  - - ~>
48
48
  - !ruby/object:Gem::Version
49
- hash: 19
49
+ hash: 23
50
50
  segments:
51
51
  - 4
52
- - 4
53
- version: "4.4"
52
+ - 6
53
+ version: "4.6"
54
54
  type: :development
55
55
  version_requirements: *id001
56
56
  - !ruby/object:Gem::Dependency
@@ -142,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
142
  requirements: []
143
143
 
144
144
  rubyforge_project: parsetree
145
- rubygems_version: 1.8.24
145
+ rubygems_version: 1.8.25
146
146
  signing_key:
147
147
  specification_version: 3
148
148
  summary: sexp_processor branches from ParseTree bringing all the generic sexp processing tools with it
metadata.gz.sig CHANGED
Binary file