rtext 0.9.2 → 0.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +6 -1
- data/Project.yaml +14 -0
- data/lib/rtext/frontend/connector.rb +2 -2
- metadata +4 -28
- data/Rakefile +0 -39
- data/test/completer_test.rb +0 -606
- data/test/context_builder_test.rb +0 -952
- data/test/frontend/context_test.rb +0 -301
- data/test/instantiator_test.rb +0 -1773
- data/test/integration/crash_on_request_editor.rb +0 -12
- data/test/integration/ecore_editor.rb +0 -50
- data/test/integration/model/invalid_encoding.invenc +0 -2
- data/test/integration/model/test.crash_on_request +0 -18
- data/test/integration/model/test.crashing_backend +0 -18
- data/test/integration/model/test.dont_open_socket +0 -0
- data/test/integration/model/test.invalid_cmd_line +0 -0
- data/test/integration/model/test.not_in_rtext +0 -0
- data/test/integration/model/test_large_with_errors.ect3 +0 -43523
- data/test/integration/model/test_metamodel.ect +0 -24
- data/test/integration/model/test_metamodel2.ect +0 -5
- data/test/integration/model/test_metamodel3.ect4 +0 -7
- data/test/integration/model/test_metamodel_error.ect2 +0 -3
- data/test/integration/model/test_metamodel_ok.ect2 +0 -18
- data/test/integration/test.rb +0 -974
- data/test/link_detector_test.rb +0 -287
- data/test/message_helper_test.rb +0 -116
- data/test/rtext_test.rb +0 -11
- data/test/serializer_test.rb +0 -1023
- data/test/tokenizer_test.rb +0 -173
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a5cc8d9398e6453bbc549caf640e38dabf76b56
|
4
|
+
data.tar.gz: bf45a3cb45e7dda6964b516ff71ad6f09ac02ca3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6330b11b5cd1f8fa761db136ef272aa07d0994c1fef3739a8a689d0b28dfd5d363196fdf6ea04b8d7319d863f21c4ee3c875b59409a04b93e825d3abf782fe7
|
7
|
+
data.tar.gz: c61c3e48987ec0dc6ea4cebdfeb381764e5447ccda48cd6634158611ebb6a18f80a747c92fb748c582cd3344edb6eb87e8c30acf1dffaedb0c07650fa4b59485
|
data/CHANGELOG
CHANGED
@@ -105,4 +105,9 @@
|
|
105
105
|
|
106
106
|
* Fixed frontend connector
|
107
107
|
* Fixed frontend tests
|
108
|
-
* Automatic conversion of integer and float values to string
|
108
|
+
* Automatic conversion of integer and float values to string
|
109
|
+
|
110
|
+
=0.9.3
|
111
|
+
|
112
|
+
* Fixed frontend log file path issue
|
113
|
+
|
data/Project.yaml
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
name: rtext
|
2
|
+
version: 0.9.3
|
3
|
+
git: https://github.com/mthiede/rtext.git
|
4
|
+
summary: Ruby Textual Modelling
|
5
|
+
email: martin dot thiede at gmx de
|
6
|
+
homepage: http://ruby-gen.org
|
7
|
+
description: RText can be used to derive textual languages from an RGen metamodel with very little effort.
|
8
|
+
authors: [Martin Thiede]
|
9
|
+
dependencies:
|
10
|
+
http://rubygems.org:
|
11
|
+
- {name: rgen, version: '~> 0.8.0'}
|
12
|
+
rdoc_options: [--main, README.rdoc, -x, test]
|
13
|
+
extra_rdoc_files: [README.rdoc, CHANGELOG, MIT-LICENSE, RText_Users_Guide, RText_Protocol]
|
14
|
+
encrypt_sources: false
|
@@ -176,9 +176,9 @@ def connect
|
|
176
176
|
@logger.info @config.command if @logger
|
177
177
|
|
178
178
|
if @outfile_provider
|
179
|
-
@out_file = @outfile_provider.call
|
179
|
+
@out_file = File.expand_path(@outfile_provider.call)
|
180
180
|
else
|
181
|
-
@out_file = tempfile_name
|
181
|
+
@out_file = File.expand_path(tempfile_name)
|
182
182
|
end
|
183
183
|
|
184
184
|
if @process_id.nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rtext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Thiede
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rgen
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
version: 0.8.0
|
27
27
|
description: RText can be used to derive textual languages from an RGen metamodel
|
28
28
|
with very little effort.
|
29
|
-
email:
|
29
|
+
email:
|
30
30
|
executables: []
|
31
31
|
extensions: []
|
32
32
|
extra_rdoc_files:
|
@@ -38,10 +38,10 @@ extra_rdoc_files:
|
|
38
38
|
files:
|
39
39
|
- CHANGELOG
|
40
40
|
- MIT-LICENSE
|
41
|
+
- Project.yaml
|
41
42
|
- README.rdoc
|
42
43
|
- RText_Protocol
|
43
44
|
- RText_Users_Guide
|
44
|
-
- Rakefile
|
45
45
|
- lib/rtext/context_builder.rb
|
46
46
|
- lib/rtext/default_completer.rb
|
47
47
|
- lib/rtext/default_loader.rb
|
@@ -61,30 +61,6 @@ files:
|
|
61
61
|
- lib/rtext/serializer.rb
|
62
62
|
- lib/rtext/service.rb
|
63
63
|
- lib/rtext/tokenizer.rb
|
64
|
-
- test/completer_test.rb
|
65
|
-
- test/context_builder_test.rb
|
66
|
-
- test/frontend/context_test.rb
|
67
|
-
- test/instantiator_test.rb
|
68
|
-
- test/integration/crash_on_request_editor.rb
|
69
|
-
- test/integration/ecore_editor.rb
|
70
|
-
- test/integration/model/invalid_encoding.invenc
|
71
|
-
- test/integration/model/test.crash_on_request
|
72
|
-
- test/integration/model/test.crashing_backend
|
73
|
-
- test/integration/model/test.dont_open_socket
|
74
|
-
- test/integration/model/test.invalid_cmd_line
|
75
|
-
- test/integration/model/test.not_in_rtext
|
76
|
-
- test/integration/model/test_large_with_errors.ect3
|
77
|
-
- test/integration/model/test_metamodel.ect
|
78
|
-
- test/integration/model/test_metamodel2.ect
|
79
|
-
- test/integration/model/test_metamodel3.ect4
|
80
|
-
- test/integration/model/test_metamodel_error.ect2
|
81
|
-
- test/integration/model/test_metamodel_ok.ect2
|
82
|
-
- test/integration/test.rb
|
83
|
-
- test/link_detector_test.rb
|
84
|
-
- test/message_helper_test.rb
|
85
|
-
- test/rtext_test.rb
|
86
|
-
- test/serializer_test.rb
|
87
|
-
- test/tokenizer_test.rb
|
88
64
|
homepage: http://ruby-gen.org
|
89
65
|
licenses: []
|
90
66
|
metadata: {}
|
data/Rakefile
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
require 'rubygems/package_task'
|
2
|
-
|
3
|
-
require 'rake'
|
4
|
-
require 'rdoc/task'
|
5
|
-
|
6
|
-
RTextGemSpec = eval(File.read('rtext.gemspec'))
|
7
|
-
|
8
|
-
gemfiles = Rake::FileList.new
|
9
|
-
gemfiles.include('{lib,test}/**/*')
|
10
|
-
gemfiles.include(DocFiles)
|
11
|
-
gemfiles.include('Rakefile')
|
12
|
-
gemfiles.exclude(/\b\.bak\b/)
|
13
|
-
RTextGemSpec.files = gemfiles
|
14
|
-
|
15
|
-
RDoc::Task.new do |rd|
|
16
|
-
rd.main = 'README.rdoc'
|
17
|
-
rd.rdoc_files.include(RTextGemSpec.extra_rdoc_files)
|
18
|
-
rd.rdoc_files.include('lib/**/*.rb')
|
19
|
-
rd.rdoc_dir = 'doc'
|
20
|
-
end
|
21
|
-
|
22
|
-
RTextPackageTask = Gem::PackageTask.new(RTextGemSpec) do |p|
|
23
|
-
p.need_zip = false
|
24
|
-
end
|
25
|
-
|
26
|
-
task :prepare_package_rdoc => :rdoc do
|
27
|
-
RTextPackageTask.package_files.include('doc/**/*')
|
28
|
-
end
|
29
|
-
|
30
|
-
task :release => [:prepare_package_rdoc, :package]
|
31
|
-
|
32
|
-
task :clobber => [:clobber_rdoc, :clobber_package]
|
33
|
-
|
34
|
-
require 'rake/testtask'
|
35
|
-
|
36
|
-
::Rake::TestTask.new(:test) do |t|
|
37
|
-
t.test_files = ['test/rtext_test.rb']
|
38
|
-
t.warning = false
|
39
|
-
end
|