ndtypes 0.2.0dev6 → 0.2.0dev8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/ext/ruby_ndtypes/GRTAGS +0 -0
  3. data/ext/ruby_ndtypes/GTAGS +0 -0
  4. data/ext/ruby_ndtypes/include/ruby_ndtypes.h +90 -0
  5. data/ext/ruby_ndtypes/lib/libndtypes.a +0 -0
  6. data/ext/ruby_ndtypes/lib/libndtypes.so.0.2.0dev3 +0 -0
  7. data/ext/ruby_ndtypes/ndtypes/config.log +3 -3
  8. data/ext/ruby_ndtypes/ndtypes/libndtypes/grammar.c +756 -807
  9. data/ext/ruby_ndtypes/ndtypes/libndtypes/grammar.o +0 -0
  10. data/ext/ruby_ndtypes/ndtypes/libndtypes/grammar.y +3 -13
  11. data/ext/ruby_ndtypes/ndtypes/libndtypes/io.c +2 -2
  12. data/ext/ruby_ndtypes/ndtypes/libndtypes/io.o +0 -0
  13. data/ext/ruby_ndtypes/ndtypes/libndtypes/libndtypes.a +0 -0
  14. data/ext/ruby_ndtypes/ndtypes/libndtypes/libndtypes.so.0.2.0dev3 +0 -0
  15. data/ext/ruby_ndtypes/ndtypes/libndtypes/tests/test_match.c +5 -5
  16. data/ext/ruby_ndtypes/ndtypes/libndtypes/tests/test_parse.c +12 -12
  17. data/ext/ruby_ndtypes/ndtypes/libndtypes/tests/test_parse_error.c +8 -8
  18. data/ext/ruby_ndtypes/ndtypes/libndtypes/tests/test_parse_roundtrip.c +6 -6
  19. data/ext/ruby_ndtypes/ndtypes/libndtypes/tests/test_typecheck.c +6 -6
  20. data/ext/ruby_ndtypes/ndtypes/python/ndtypes/_ndtypes.c +2 -2
  21. data/ext/ruby_ndtypes/ndtypes/python/ndtypes/libndtypes.a +0 -0
  22. data/ext/ruby_ndtypes/ndtypes/python/ndtypes/libndtypes.so.0.2.0dev3 +0 -0
  23. data/ext/ruby_ndtypes/ndtypes/python/test_ndtypes.py +22 -4
  24. data/ext/ruby_ndtypes/ruby_ndtypes.c +0 -20
  25. data/ext/ruby_ndtypes/ruby_ndtypes.h +90 -0
  26. data/lib/ndtypes.rb +6 -0
  27. data/lib/ndtypes/version.rb +2 -2
  28. data/lib/ruby_ndtypes.so +0 -0
  29. metadata +2 -2
@@ -50,6 +50,12 @@ class NDTypes
50
50
  def apply in_types, out: nil
51
51
  _apply(in_types, out)
52
52
  end
53
+
54
+ def inspect
55
+ str = "#<NDTypes:#{object_id}>\n"
56
+ str += "\t" + to_s
57
+ str
58
+ end
53
59
  end
54
60
 
55
61
  NDT = NDTypes
@@ -1,6 +1,6 @@
1
1
  class NDTypes
2
2
  # VERSION number should be the version of libxnd this is built against.
3
- VERSION = "0.2.0dev6"
3
+ VERSION = "0.2.0dev8"
4
4
  # git commit of the version.
5
- COMMIT = "db4c0fa075a66a6fd645e77b90e4b1ba35a5b703"
5
+ COMMIT = "3ce6607c96d8fe67b72cc0c97bf595620cdd274e"
6
6
  end
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ndtypes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0dev6
4
+ version: 0.2.0dev8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sameer Deshmukh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-06 00:00:00.000000000 Z
11
+ date: 2019-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest