iv-phonic 0.0.1

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.
Files changed (50) hide show
  1. data/.autotest +24 -0
  2. data/Manifest.txt +49 -0
  3. data/README.rdoc +32 -0
  4. data/Rakefile +54 -0
  5. data/ext/include/iv/algorithm.h +23 -0
  6. data/ext/include/iv/alloc.h +200 -0
  7. data/ext/include/iv/any.h +71 -0
  8. data/ext/include/iv/ast-factory.h +277 -0
  9. data/ext/include/iv/ast-fwd.h +92 -0
  10. data/ext/include/iv/ast-serializer.h +579 -0
  11. data/ext/include/iv/ast-visitor.h +121 -0
  12. data/ext/include/iv/ast.h +1127 -0
  13. data/ext/include/iv/chars.h +83 -0
  14. data/ext/include/iv/cmdline.h +830 -0
  15. data/ext/include/iv/conversions.h +308 -0
  16. data/ext/include/iv/dtoa.h +20 -0
  17. data/ext/include/iv/enable_if.h +18 -0
  18. data/ext/include/iv/errors.h +15 -0
  19. data/ext/include/iv/fixedcontainer.h +42 -0
  20. data/ext/include/iv/functor.h +29 -0
  21. data/ext/include/iv/lexer.h +1281 -0
  22. data/ext/include/iv/location.h +23 -0
  23. data/ext/include/iv/mt19937.h +175 -0
  24. data/ext/include/iv/noncopyable.h +30 -0
  25. data/ext/include/iv/none.h +10 -0
  26. data/ext/include/iv/parser.h +2150 -0
  27. data/ext/include/iv/source.h +27 -0
  28. data/ext/include/iv/space.h +178 -0
  29. data/ext/include/iv/static_assert.h +30 -0
  30. data/ext/include/iv/stringpiece.h +385 -0
  31. data/ext/include/iv/token.h +311 -0
  32. data/ext/include/iv/ucdata.h +58 -0
  33. data/ext/include/iv/uchar.h +8 -0
  34. data/ext/include/iv/ustring.h +28 -0
  35. data/ext/include/iv/ustringpiece.h +9 -0
  36. data/ext/include/iv/utils.h +83 -0
  37. data/ext/include/iv/xorshift.h +74 -0
  38. data/ext/iv/phonic/ast-fwd.h +21 -0
  39. data/ext/iv/phonic/ast.h +10 -0
  40. data/ext/iv/phonic/creator.h +530 -0
  41. data/ext/iv/phonic/encoding.h +110 -0
  42. data/ext/iv/phonic/extconf.rb +5 -0
  43. data/ext/iv/phonic/factory.h +247 -0
  44. data/ext/iv/phonic/parser.h +12 -0
  45. data/ext/iv/phonic/phonic.cc +69 -0
  46. data/ext/iv/phonic/rnode.h +15 -0
  47. data/ext/iv/phonic/rparser.h +48 -0
  48. data/ext/iv/phonic/source.h +146 -0
  49. data/test/test_iv_phonic.rb +32 -0
  50. metadata +159 -0
metadata ADDED
@@ -0,0 +1,159 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: iv-phonic
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ version: 0.0.1
10
+ platform: ruby
11
+ authors:
12
+ - Constellation
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-11-07 00:00:00 +09:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: rubyforge
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 2
30
+ - 0
31
+ - 4
32
+ version: 2.0.4
33
+ type: :development
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: rake-compiler
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ segments:
44
+ - 0
45
+ version: "0"
46
+ type: :development
47
+ version_requirements: *id002
48
+ - !ruby/object:Gem::Dependency
49
+ name: hoe
50
+ prerelease: false
51
+ requirement: &id003 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ segments:
57
+ - 2
58
+ - 6
59
+ - 2
60
+ version: 2.6.2
61
+ type: :development
62
+ version_requirements: *id003
63
+ description: phonic is ruby binding for iv AST API
64
+ email:
65
+ - utatane.tea@gmail.com
66
+ executables: []
67
+
68
+ extensions:
69
+ - ext/iv/phonic/extconf.rb
70
+ extra_rdoc_files:
71
+ - Manifest.txt
72
+ - README.rdoc
73
+ files:
74
+ - .autotest
75
+ - Manifest.txt
76
+ - README.rdoc
77
+ - Rakefile
78
+ - test/test_iv_phonic.rb
79
+ - ext/include/iv/uchar.h
80
+ - ext/include/iv/space.h
81
+ - ext/include/iv/lexer.h
82
+ - ext/include/iv/conversions.h
83
+ - ext/include/iv/dtoa.h
84
+ - ext/include/iv/mt19937.h
85
+ - ext/include/iv/ast.h
86
+ - ext/include/iv/noncopyable.h
87
+ - ext/include/iv/ast-factory.h
88
+ - ext/include/iv/stringpiece.h
89
+ - ext/include/iv/static_assert.h
90
+ - ext/include/iv/functor.h
91
+ - ext/include/iv/parser.h
92
+ - ext/include/iv/errors.h
93
+ - ext/include/iv/ast-visitor.h
94
+ - ext/include/iv/token.h
95
+ - ext/include/iv/enable_if.h
96
+ - ext/include/iv/source.h
97
+ - ext/include/iv/any.h
98
+ - ext/include/iv/cmdline.h
99
+ - ext/include/iv/xorshift.h
100
+ - ext/include/iv/location.h
101
+ - ext/include/iv/none.h
102
+ - ext/include/iv/algorithm.h
103
+ - ext/include/iv/ustring.h
104
+ - ext/include/iv/ast-fwd.h
105
+ - ext/include/iv/utils.h
106
+ - ext/include/iv/alloc.h
107
+ - ext/include/iv/chars.h
108
+ - ext/include/iv/fixedcontainer.h
109
+ - ext/include/iv/ustringpiece.h
110
+ - ext/include/iv/ast-serializer.h
111
+ - ext/include/iv/ucdata.h
112
+ - ext/iv/phonic/rnode.h
113
+ - ext/iv/phonic/ast.h
114
+ - ext/iv/phonic/factory.h
115
+ - ext/iv/phonic/parser.h
116
+ - ext/iv/phonic/encoding.h
117
+ - ext/iv/phonic/source.h
118
+ - ext/iv/phonic/phonic.cc
119
+ - ext/iv/phonic/rparser.h
120
+ - ext/iv/phonic/creator.h
121
+ - ext/iv/phonic/ast-fwd.h
122
+ - ext/iv/phonic/extconf.rb
123
+ has_rdoc: true
124
+ homepage: https://github.com/Constellation/iv/tree/master/src/phonic/
125
+ licenses: []
126
+
127
+ post_install_message:
128
+ rdoc_options:
129
+ - --main
130
+ - README.rdoc
131
+ require_paths:
132
+ - lib
133
+ required_ruby_version: !ruby/object:Gem::Requirement
134
+ none: false
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ segments:
139
+ - 1
140
+ - 9
141
+ - 1
142
+ version: 1.9.1
143
+ required_rubygems_version: !ruby/object:Gem::Requirement
144
+ none: false
145
+ requirements:
146
+ - - ">="
147
+ - !ruby/object:Gem::Version
148
+ segments:
149
+ - 0
150
+ version: "0"
151
+ requirements: []
152
+
153
+ rubyforge_project: iv-phonic
154
+ rubygems_version: 1.3.7
155
+ signing_key:
156
+ specification_version: 3
157
+ summary: "iv / phonic : ECMAScript AST"
158
+ test_files:
159
+ - test/test_iv_phonic.rb