sal-tools-analyze 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.
- data/AUTHORS +1 -0
- data/README +20 -0
- data/lib/sal/class.rb +43 -0
- data/lib/sal/code.rb +236 -0
- data/lib/sal/command.rb +35 -0
- data/lib/sal/external.rb +37 -0
- data/lib/sal/externalfunction.rb +46 -0
- data/lib/sal/format.rb +43 -0
- data/lib/sal/function.rb +26 -0
- data/lib/sal/item.rb +214 -0
- data/lib/sal/library.rb +25 -0
- data/lib/sal/version.rb +161 -0
- data/sal-tools-analyze.gemspec +16 -0
- data/test/data/test.21.text.sql.app +458 -0
- data/test/data/test.40.indented.app +219 -0
- data/test/data/test.40.normal.app +0 -0
- data/test/data/test.40.text.app +218 -0
- data/test/data/test.40.text.classes.app +350 -0
- data/test/data/test.40.text.multiline.app +228 -0
- data/test/data/test.41.indented.app +218 -0
- data/test/data/test.41.normal.app +0 -0
- data/test/data/test.41.text.app +218 -0
- data/test/data/test.41.text.externalfunctions.app +352 -0
- data/test/test.rb +16 -0
- data/test/test_class.rb +34 -0
- data/test/test_code.rb +180 -0
- data/test/test_command.rb +16 -0
- data/test/test_external.rb +37 -0
- data/test/test_externalfunction.rb +76 -0
- data/test/test_format.rb +58 -0
- data/test/test_function.rb +22 -0
- data/test/test_item.rb +123 -0
- data/test/test_library.rb +38 -0
- data/test/test_version.rb +80 -0
- metadata +128 -0
metadata
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sal-tools-analyze
|
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
|
+
- M. Ehehalt
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2011-10-31 00:00:00 +01:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: |
|
22
|
+
= sal-tools - A library for the analyze of SAL code
|
23
|
+
|
24
|
+
== SYNOPSIS
|
25
|
+
|
26
|
+
This library gives the basic functionality to analyse Gupta source code.
|
27
|
+
Copyright (c)2007-2011 by Michael Ehehalt
|
28
|
+
Error and feature list at the end of the document
|
29
|
+
|
30
|
+
== Other stuff
|
31
|
+
|
32
|
+
Author:: M. Ehehalt <flynn42ryder@rubyforge.org>
|
33
|
+
License:: Copyright (C) 2007, 2008, ... M. Ehehalt
|
34
|
+
Released under the GNU GPL 2 license
|
35
|
+
|
36
|
+
== Warranty
|
37
|
+
|
38
|
+
This program is distributed in the hope that it will be useful,
|
39
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
40
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
41
|
+
GNU General Public License for more details.
|
42
|
+
|
43
|
+
email: flynn42ryder@rubyforge.org
|
44
|
+
executables: []
|
45
|
+
|
46
|
+
extensions: []
|
47
|
+
|
48
|
+
extra_rdoc_files: []
|
49
|
+
|
50
|
+
files:
|
51
|
+
- AUTHORS
|
52
|
+
- lib/sal/class.rb
|
53
|
+
- lib/sal/code.rb
|
54
|
+
- lib/sal/command.rb
|
55
|
+
- lib/sal/external.rb
|
56
|
+
- lib/sal/externalfunction.rb
|
57
|
+
- lib/sal/format.rb
|
58
|
+
- lib/sal/function.rb
|
59
|
+
- lib/sal/item.rb
|
60
|
+
- lib/sal/library.rb
|
61
|
+
- lib/sal/version.rb
|
62
|
+
- README
|
63
|
+
- sal-tools-analyze-0.0.1.gem
|
64
|
+
- sal-tools-analyze.gemspec
|
65
|
+
- test/data/test.21.text.sql.app
|
66
|
+
- test/data/test.40.indented.app
|
67
|
+
- test/data/test.40.normal.app
|
68
|
+
- test/data/test.40.text.app
|
69
|
+
- test/data/test.40.text.classes.app
|
70
|
+
- test/data/test.40.text.multiline.app
|
71
|
+
- test/data/test.41.indented.app
|
72
|
+
- test/data/test.41.normal.app
|
73
|
+
- test/data/test.41.text.app
|
74
|
+
- test/data/test.41.text.externalfunctions.app
|
75
|
+
- test/test.rb
|
76
|
+
- test/test_class.rb
|
77
|
+
- test/test_code.rb
|
78
|
+
- test/test_command.rb
|
79
|
+
- test/test_external.rb
|
80
|
+
- test/test_externalfunction.rb
|
81
|
+
- test/test_format.rb
|
82
|
+
- test/test_function.rb
|
83
|
+
- test/test_item.rb
|
84
|
+
- test/test_library.rb
|
85
|
+
- test/test_version.rb
|
86
|
+
has_rdoc: true
|
87
|
+
homepage: ""
|
88
|
+
licenses: []
|
89
|
+
|
90
|
+
post_install_message:
|
91
|
+
rdoc_options: []
|
92
|
+
|
93
|
+
require_paths:
|
94
|
+
- lib
|
95
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
segments:
|
100
|
+
- 1
|
101
|
+
- 9
|
102
|
+
version: "1.9"
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
segments:
|
108
|
+
- 0
|
109
|
+
version: "0"
|
110
|
+
requirements:
|
111
|
+
- An installed dictionary (most Unix systems have one)
|
112
|
+
rubyforge_project:
|
113
|
+
rubygems_version: 1.3.6
|
114
|
+
signing_key:
|
115
|
+
specification_version: 3
|
116
|
+
summary: Analyse SAL-Code
|
117
|
+
test_files:
|
118
|
+
- test/test.rb
|
119
|
+
- test/test_class.rb
|
120
|
+
- test/test_code.rb
|
121
|
+
- test/test_command.rb
|
122
|
+
- test/test_external.rb
|
123
|
+
- test/test_externalfunction.rb
|
124
|
+
- test/test_format.rb
|
125
|
+
- test/test_function.rb
|
126
|
+
- test/test_item.rb
|
127
|
+
- test/test_library.rb
|
128
|
+
- test/test_version.rb
|