rake-delphi 0.0.27 → 0.0.28
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/1 +0 -0
- data/1.reg +0 -0
- data/2.reg +0 -0
- data/Gemfile.lock +1 -1
- data/lib/rake/delphi/dcc32.rb +26 -16
- data/lib/rake/delphi/version.rb +1 -1
- data/test/resources/testproject/Rakefile.rb +4 -1
- data/test/resources/testproject/local.resources.ext.txt +1 -0
- data/test/resources/testproject/resources_ext.rc +1 -0
- data/test/resources/testproject/testproject.dpr +22 -12
- data/test/resources/testproject/testproject.rc +62 -0
- data/test/resources/testproject-android/AndroidManifest.xml +35 -0
- data/test/resources/testproject-android/TestProject.cfg +8 -0
- data/test/resources/testproject-android/TestProject.rc +62 -0
- data/test/test-delphi.rb +14 -3
- metadata +115 -100
data/1
ADDED
Binary file
|
data/1.reg
ADDED
Binary file
|
data/2.reg
ADDED
Binary file
|
data/Gemfile.lock
CHANGED
data/lib/rake/delphi/dcc32.rb
CHANGED
@@ -221,6 +221,30 @@ module Rake
|
|
221
221
|
args.flatten
|
222
222
|
end
|
223
223
|
|
224
|
+
def add_resources(src, properties)
|
225
|
+
return unless properties[:resources_additional]
|
226
|
+
res_add = properties[:resources_additional]
|
227
|
+
if res_add.kind_of?(String)
|
228
|
+
res_add = res_add.split(';')
|
229
|
+
end
|
230
|
+
c = 0
|
231
|
+
res_add.each do |res|
|
232
|
+
if res.kind_of?(Symbol)
|
233
|
+
rc_task_add = res
|
234
|
+
else
|
235
|
+
c = c.next
|
236
|
+
rc_task_add = application.define_task(RCTask, shortname + ':rc:add' + c.to_s)
|
237
|
+
input, output = res.split(':', 2)
|
238
|
+
rc_task_add.input = src.pathmap('%d%s') + input
|
239
|
+
if output
|
240
|
+
# if extension is present set it to output
|
241
|
+
rc_task_add.output = rc_task_add.output.pathmap('%d%s') + output
|
242
|
+
end
|
243
|
+
end
|
244
|
+
enhance([rc_task_add])
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
224
248
|
public
|
225
249
|
def dpr
|
226
250
|
@_source
|
@@ -249,22 +273,8 @@ module Rake
|
|
249
273
|
@rc_task.input = src
|
250
274
|
@rc_task.is_rc = properties[:releaseCandidate]
|
251
275
|
@rc_task.mainicon_path = @mainicon
|
252
|
-
|
253
|
-
|
254
|
-
if res_add.kind_of?(String)
|
255
|
-
res_add = res_add.split(';')
|
256
|
-
end
|
257
|
-
c = 0
|
258
|
-
res_add.each do |res|
|
259
|
-
if res.kind_of?(Symbol)
|
260
|
-
rc_task_add = res
|
261
|
-
else
|
262
|
-
c = c.next
|
263
|
-
rc_task_add = application.define_task(RCTask, shortname + ':rc:add' + c.to_s)
|
264
|
-
rc_task_add.input = src.pathmap('%d%s') + res
|
265
|
-
end
|
266
|
-
enhance([rc_task_add])
|
267
|
-
end
|
276
|
+
|
277
|
+
add_resources(src, properties)
|
268
278
|
end
|
269
279
|
|
270
280
|
def init_libs(libs = nil)
|
data/lib/rake/delphi/version.rb
CHANGED
@@ -31,7 +31,10 @@ namespace :test do
|
|
31
31
|
task :prepare, :useresources, :options do |t, opts|
|
32
32
|
_task = Rake::Task['test:compile']
|
33
33
|
dpr = Rake.application.define_task(Rake::Delphi::Project, (_task.name + ':delphi').to_sym)
|
34
|
-
dpr[:resources_additional] =
|
34
|
+
dpr[:resources_additional] = []
|
35
|
+
dpr[:resources_additional] << 'resources' if opts[:useresources]
|
36
|
+
dpr[:resources_additional] << 'resources_ext:extended_resources.dres' if opts[:useresources] === 'ext'
|
37
|
+
dpr[:resources_additional] = dpr[:resources_additional].join(';')
|
35
38
|
if Rake::Delphi::EnvVariables.delphi_version >= Rake::Delphi::DELPHI_VERSION_XE
|
36
39
|
dpr[:platform] = 'Win32'
|
37
40
|
end
|
@@ -0,0 +1 @@
|
|
1
|
+
-=WITH EXTENDED RESOURCES=-
|
@@ -0,0 +1 @@
|
|
1
|
+
LOCAL_RESOURCES_EXT RCDATA local.resources.ext.txt
|
@@ -19,29 +19,26 @@ uses
|
|
19
19
|
{$IFDEF RESOURCES}
|
20
20
|
{$R 'resources.res' 'resources.rc'}
|
21
21
|
{$ENDIF RESOURCES}
|
22
|
+
{$IFDEF RESOURCES_EXT}
|
23
|
+
{$R 'extended_resources.dres'}
|
24
|
+
{$ENDIF RESOURCES_EXT}
|
22
25
|
{$IFDEF ASSIGNABLE_CONSTS}
|
23
26
|
const
|
24
27
|
TEST_CONST: string = '-=ASSIGNED CONST=-';
|
25
28
|
{$ENDIF ASSIGNABLE_CONSTS}
|
29
|
+
function GetResource(const pResourceName: string): string;
|
26
30
|
var
|
27
31
|
res: TResourceStream;
|
28
32
|
str: TStringStream;
|
29
|
-
s: string;
|
30
33
|
begin
|
31
|
-
|
32
|
-
Write('DEBUG: ');
|
33
|
-
{$ENDIF}
|
34
|
-
{$IFOPT D+}
|
35
|
-
Write('D+: ');
|
36
|
-
{$ENDIF}
|
37
|
-
s := EmptyStr;
|
34
|
+
Result := EmptyStr;
|
38
35
|
try
|
39
|
-
res := TResourceStream.Create(HInstance,
|
36
|
+
res := TResourceStream.Create(HInstance, pResourceName, RT_RCDATA);
|
40
37
|
try
|
41
38
|
str := TStringStream.Create(EmptyStr);
|
42
39
|
try
|
43
40
|
res.SaveToStream(str);
|
44
|
-
|
41
|
+
Result := str.DataString;
|
45
42
|
finally
|
46
43
|
FreeAndNil(str);
|
47
44
|
end;
|
@@ -49,8 +46,21 @@ begin
|
|
49
46
|
FreeAndNil(res);
|
50
47
|
end;
|
51
48
|
except
|
52
|
-
|
49
|
+
Result := EmptyStr;
|
53
50
|
end;
|
51
|
+
end;
|
52
|
+
|
53
|
+
var
|
54
|
+
s: string;
|
55
|
+
begin
|
56
|
+
{$IFDEF DEBUG}
|
57
|
+
Write('DEBUG: ');
|
58
|
+
{$ENDIF}
|
59
|
+
{$IFOPT D+}
|
60
|
+
Write('D+: ');
|
61
|
+
{$ENDIF}
|
62
|
+
s := GetResource('LOCAL_RESOURCES');
|
63
|
+
s := s + GetResource('LOCAL_RESOURCES_EXT');
|
54
64
|
{$IFDEF LIBS}
|
55
65
|
s := s + LibUnit.LibUnitFunction;
|
56
66
|
{$ENDIF LIBS}
|
@@ -75,4 +85,4 @@ begin
|
|
75
85
|
end;
|
76
86
|
{$ENDIF}
|
77
87
|
WriteLn('testproject works', s);
|
78
|
-
end.
|
88
|
+
end.
|
@@ -0,0 +1,62 @@
|
|
1
|
+
#define VS_FF_DEBUG 0x00000001
|
2
|
+
#define VS_FF_PRERELEASE 0x00000002
|
3
|
+
#define VS_FF_PATCHED 0x00000004
|
4
|
+
#define VS_FF_PRIVATEBUILD 0x00000008
|
5
|
+
#define VS_FF_INFOINFERRED 0x00000010
|
6
|
+
#define VS_FF_SPECIALBUILD 0x00000020
|
7
|
+
|
8
|
+
#ifndef DEBUG
|
9
|
+
#define VER_DEBUG 0
|
10
|
+
#else
|
11
|
+
#define VER_DEBUG VS_FF_DEBUG
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifndef RC
|
15
|
+
#define VER_PRERELEASE 0
|
16
|
+
#else
|
17
|
+
#define VER_PRERELEASE VS_FF_PRERELEASE
|
18
|
+
#endif
|
19
|
+
|
20
|
+
|
21
|
+
#define _FILEFLAGS (VER_PRERELEASE|VER_DEBUG)
|
22
|
+
|
23
|
+
LANGUAGE 0x19, 0x01
|
24
|
+
#ifdef MAIN_ICON
|
25
|
+
MAINICON ICON "C:/cygwin/home/ashu/projects/1C-Mirror/lib/gems/rake-delphi/test/resources/testproject/testproject.ico"
|
26
|
+
#endif
|
27
|
+
1 VERSIONINFO
|
28
|
+
FILEVERSION 0,0,0,0
|
29
|
+
PRODUCTVERSION 1,2,3,4
|
30
|
+
FILEOS 0x40004
|
31
|
+
FILETYPE 0x1
|
32
|
+
FILEFLAGSMASK _FILEFLAGS
|
33
|
+
FILEFLAGS _FILEFLAGS
|
34
|
+
BEGIN
|
35
|
+
BLOCK "StringFileInfo"
|
36
|
+
BEGIN
|
37
|
+
BLOCK "041904E3"
|
38
|
+
BEGIN
|
39
|
+
VALUE "CompanyName", "Rake\0"
|
40
|
+
VALUE "FileDescription", "Test rake-delphi project XE7 description\0"
|
41
|
+
VALUE "FileVersion", "0.0.0.0\0"
|
42
|
+
VALUE "InternalName", "testproject.exe\0"
|
43
|
+
VALUE "LegalCopyright", "Copyright. ��������\0"
|
44
|
+
VALUE "LegalTrademarks", "Trademark. �������� �����\0"
|
45
|
+
VALUE "OriginalFilename", "testproject.exe\0"
|
46
|
+
VALUE "ProductName", "Test rake-delphi project XE7 product name\0"
|
47
|
+
VALUE "ProductVersion", "1.2.3.4\0"
|
48
|
+
VALUE "Comments", "Test project comment\0"
|
49
|
+
#ifdef DEBUG
|
50
|
+
VALUE "DebugBuild", "DebugBuild\0"
|
51
|
+
#endif
|
52
|
+
#ifdef RC
|
53
|
+
VALUE "ReleaseCandidate", "\0"
|
54
|
+
#endif
|
55
|
+
END
|
56
|
+
END
|
57
|
+
|
58
|
+
BLOCK "VarFileInfo"
|
59
|
+
BEGIN
|
60
|
+
VALUE "Translation", 0x0419 0x04E3
|
61
|
+
END
|
62
|
+
END
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- BEGIN_INCLUDE(manifest) -->
|
3
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
4
|
+
package="com.embarcadero.HelloWorld"
|
5
|
+
android:versionCode="2"
|
6
|
+
android:versionName="1.3.2.4">
|
7
|
+
|
8
|
+
<!-- This is the platform API where NativeActivity was introduced. -->
|
9
|
+
<uses-sdk android:minSdkVersion="9" />
|
10
|
+
|
11
|
+
<application android:persistent="False"
|
12
|
+
android:restoreAnyVersion="False"
|
13
|
+
android:label="HelloWorld"
|
14
|
+
android:installLocation="preferExternal"
|
15
|
+
android:debuggable="True"
|
16
|
+
android:largeHeap="False"
|
17
|
+
android:icon="@drawable/ic_launcher"
|
18
|
+
android:theme="@android:style/Theme.NoTitleBar">
|
19
|
+
<!-- Our activity is a subclass of the built-in NativeActivity framework class.
|
20
|
+
This will take care of integrating with our NDK code. -->
|
21
|
+
<activity android:name="com.embarcadero.firemonkey.FMXNativeActivity"
|
22
|
+
android:label="HelloWorld"
|
23
|
+
android:configChanges="orientation|keyboardHidden">
|
24
|
+
<!-- Tell NativeActivity the name of our .so -->
|
25
|
+
<meta-data android:name="android.app.lib_name"
|
26
|
+
android:value="TestProject" />
|
27
|
+
<intent-filter>
|
28
|
+
<action android:name="android.intent.action.MAIN" />
|
29
|
+
<category android:name="android.intent.category.LAUNCHER" />
|
30
|
+
</intent-filter>
|
31
|
+
</activity>
|
32
|
+
<receiver android:name="com.embarcadero.firemonkey.notifications.FMXNotificationAlarm" />
|
33
|
+
</application>
|
34
|
+
</manifest>
|
35
|
+
<!-- END_INCLUDE(manifest) -->
|
@@ -0,0 +1,62 @@
|
|
1
|
+
#define VS_FF_DEBUG 0x00000001
|
2
|
+
#define VS_FF_PRERELEASE 0x00000002
|
3
|
+
#define VS_FF_PATCHED 0x00000004
|
4
|
+
#define VS_FF_PRIVATEBUILD 0x00000008
|
5
|
+
#define VS_FF_INFOINFERRED 0x00000010
|
6
|
+
#define VS_FF_SPECIALBUILD 0x00000020
|
7
|
+
|
8
|
+
#ifndef DEBUG
|
9
|
+
#define VER_DEBUG 0
|
10
|
+
#else
|
11
|
+
#define VER_DEBUG VS_FF_DEBUG
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifndef RC
|
15
|
+
#define VER_PRERELEASE 0
|
16
|
+
#else
|
17
|
+
#define VER_PRERELEASE VS_FF_PRERELEASE
|
18
|
+
#endif
|
19
|
+
|
20
|
+
|
21
|
+
#define _FILEFLAGS (VER_PRERELEASE|VER_DEBUG)
|
22
|
+
|
23
|
+
LANGUAGE 0x19, 0x01
|
24
|
+
#ifdef MAIN_ICON
|
25
|
+
MAINICON ICON "C:/cygwin/home/ashu/projects/1C-Mirror/lib/gems/rake-delphi/test/resources/testproject-android/TestProject.ico"
|
26
|
+
#endif
|
27
|
+
1 VERSIONINFO
|
28
|
+
FILEVERSION 1,3,2,4
|
29
|
+
PRODUCTVERSION 1,2,3,4
|
30
|
+
FILEOS 0x40004
|
31
|
+
FILETYPE 0x1
|
32
|
+
FILEFLAGSMASK _FILEFLAGS
|
33
|
+
FILEFLAGS _FILEFLAGS
|
34
|
+
BEGIN
|
35
|
+
BLOCK "StringFileInfo"
|
36
|
+
BEGIN
|
37
|
+
BLOCK "041904E3"
|
38
|
+
BEGIN
|
39
|
+
VALUE "CompanyName", "Rake\0"
|
40
|
+
VALUE "FileDescription", "Test rake-delphi project XE5 description\0"
|
41
|
+
VALUE "FileVersion", "1.3.2.4\0"
|
42
|
+
VALUE "InternalName", "testproject.exe\0"
|
43
|
+
VALUE "LegalCopyright", "Copyright. ��������\0"
|
44
|
+
VALUE "LegalTrademarks", "Trademark. �������� �����\0"
|
45
|
+
VALUE "OriginalFilename", "testproject.exe\0"
|
46
|
+
VALUE "ProductName", "Test rake-delphi project XE5 product name\0"
|
47
|
+
VALUE "ProductVersion", "1.2.3.4\0"
|
48
|
+
VALUE "Comments", "Test project comment\0"
|
49
|
+
#ifdef DEBUG
|
50
|
+
VALUE "DebugBuild", "DebugBuild\0"
|
51
|
+
#endif
|
52
|
+
#ifdef RC
|
53
|
+
VALUE "ReleaseCandidate", "\0"
|
54
|
+
#endif
|
55
|
+
END
|
56
|
+
END
|
57
|
+
|
58
|
+
BLOCK "VarFileInfo"
|
59
|
+
BEGIN
|
60
|
+
VALUE "Translation", 0x0419 0x04E3
|
61
|
+
END
|
62
|
+
END
|
data/test/test-delphi.rb
CHANGED
@@ -34,6 +34,7 @@ private
|
|
34
34
|
# prepare arguments
|
35
35
|
useresources = prepare_args[:useresources]
|
36
36
|
prepare_args.delete(:useresources)
|
37
|
+
prepare_args.delete(:useresources_ext)
|
37
38
|
prepare_args[:bin] = bin_dir
|
38
39
|
prepare_args[:dcu] = dcu_dir_rel.unix2dos_separator
|
39
40
|
|
@@ -59,9 +60,9 @@ public
|
|
59
60
|
ENV['DELPHI_DIR'] = nil
|
60
61
|
super
|
61
62
|
ENV['RAKE_DIR'] = PROJECT_PATH
|
62
|
-
|
63
|
-
|
64
|
-
|
63
|
+
[exe, PROJECT_PATH + '/resources.res', PROJECT_PATH + '/extended_resources.dres'].each do |file|
|
64
|
+
File.unlink(file) if File.exists?(file)
|
65
|
+
end
|
65
66
|
require PROJECT_PATH + '/Rakefile.rb'
|
66
67
|
end
|
67
68
|
|
@@ -85,6 +86,16 @@ public
|
|
85
86
|
'testproject works-=WITH RESOURCES=-')
|
86
87
|
end
|
87
88
|
|
89
|
+
def test_compile_with_resources_ext
|
90
|
+
_test_compile_and_output({:useresources => 'ext', :defines => 'RESOURCES_EXT'},
|
91
|
+
'testproject works-=WITH EXTENDED RESOURCES=-')
|
92
|
+
end
|
93
|
+
|
94
|
+
def test_compile_with_resources_all
|
95
|
+
_test_compile_and_output({:useresources => 'ext', :defines => 'RESOURCES,RESOURCES_EXT'},
|
96
|
+
'testproject works-=WITH RESOURCES=--=WITH EXTENDED RESOURCES=-')
|
97
|
+
end
|
98
|
+
|
88
99
|
def test_compile_with_libs
|
89
100
|
_test_compile_and_output({:useresources => true, :defines => 'LIBS'},
|
90
101
|
'testproject works-=WITH LIBS=-')
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rake-delphi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.28
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-
|
12
|
+
date: 2015-05-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -114,103 +114,112 @@ executables: []
|
|
114
114
|
extensions: []
|
115
115
|
extra_rdoc_files: []
|
116
116
|
files:
|
117
|
+
- '1'
|
118
|
+
- 1.reg
|
119
|
+
- 2.reg
|
120
|
+
- Gemfile
|
121
|
+
- Gemfile.lock
|
117
122
|
- LICENSE.txt
|
118
123
|
- rake-delphi-cygwin.env.cmd
|
119
|
-
- Rakefile.rb
|
120
|
-
- Gemfile.lock
|
121
124
|
- rake-delphi-cygwin.env.sh
|
122
|
-
- README.md
|
123
|
-
- Gemfile
|
124
125
|
- rake-delphi.gemspec
|
125
|
-
-
|
126
|
-
-
|
127
|
-
- lib/rake/common/initask.rb
|
126
|
+
- Rakefile.rb
|
127
|
+
- README.md
|
128
128
|
- lib/rake/common/chdirtask.rb
|
129
|
+
- lib/rake/common/classes.rb
|
130
|
+
- lib/rake/common/dsl.rb
|
129
131
|
- lib/rake/common/echotask.rb
|
130
|
-
- lib/rake/common/hashtask.rb
|
131
132
|
- lib/rake/common/exectask.rb
|
132
|
-
- lib/rake/common/classes.rb
|
133
133
|
- lib/rake/common/git.rb
|
134
|
-
- lib/rake/common/
|
135
|
-
- lib/rake/common/
|
134
|
+
- lib/rake/common/hashtask.rb
|
135
|
+
- lib/rake/common/initask.rb
|
136
|
+
- lib/rake/common/libstask.rb
|
136
137
|
- lib/rake/common/logger.rb
|
137
|
-
- lib/rake/
|
138
|
-
- lib/rake/
|
139
|
-
- lib/rake/
|
140
|
-
- lib/rake/helpers/digest.rb
|
141
|
-
- lib/rake/helpers/gemversion.rb
|
142
|
-
- lib/rake/helpers/unittest.rb
|
143
|
-
- lib/rake/helpers/filelist.rb
|
144
|
-
- lib/rake/helpers/raketask.rb
|
145
|
-
- lib/rake/helpers/logger.rb
|
138
|
+
- lib/rake/common/sendmailtask.rb
|
139
|
+
- lib/rake/common/ziptask.rb
|
140
|
+
- lib/rake/delphi/androidmanifest.rb
|
146
141
|
- lib/rake/delphi/dcc32.rb
|
147
|
-
- lib/rake/delphi/
|
142
|
+
- lib/rake/delphi/dcc32tool.rb
|
143
|
+
- lib/rake/delphi/dccaarmtool.rb
|
144
|
+
- lib/rake/delphi/envvariables.rb
|
145
|
+
- lib/rake/delphi/liblist.rb
|
148
146
|
- lib/rake/delphi/paclient.rb
|
149
|
-
- lib/rake/delphi/tool.rb
|
150
147
|
- lib/rake/delphi/paclienttool.rb
|
151
|
-
- lib/rake/delphi/envvariables.rb
|
152
|
-
- lib/rake/delphi/version.rb
|
153
148
|
- lib/rake/delphi/project.rb
|
154
|
-
- lib/rake/delphi/dccaarmtool.rb
|
155
|
-
- lib/rake/delphi/dcc32tool.rb
|
156
|
-
- lib/rake/delphi/androidmanifest.rb
|
157
|
-
- lib/rake/delphi/liblist.rb
|
158
|
-
- lib/rake/delphi/resources.rb
|
159
149
|
- lib/rake/delphi/projectinfo.rb
|
150
|
+
- lib/rake/delphi/rc.rb
|
151
|
+
- lib/rake/delphi/resources.rb
|
152
|
+
- lib/rake/delphi/tool.rb
|
153
|
+
- lib/rake/delphi/version.rb
|
160
154
|
- lib/rake/delphi.rb
|
155
|
+
- lib/rake/helpers/digest.rb
|
156
|
+
- lib/rake/helpers/file.rb
|
157
|
+
- lib/rake/helpers/filelist.rb
|
158
|
+
- lib/rake/helpers/gemversion.rb
|
159
|
+
- lib/rake/helpers/logger.rb
|
160
|
+
- lib/rake/helpers/rake.rb
|
161
|
+
- lib/rake/helpers/raketask.rb
|
162
|
+
- lib/rake/helpers/string.rb
|
163
|
+
- lib/rake/helpers/unittest.rb
|
161
164
|
- lib/rake/templates/project.erb
|
162
|
-
- test/test-
|
165
|
+
- test/test-delphi-android.rb
|
163
166
|
- test/test-delphi-xe7-android.rb
|
164
|
-
- test/test-
|
165
|
-
- test/test-git.rb
|
166
|
-
- test/test-projectinfo-android-xe7.rb
|
167
|
-
- test/test-gemversion.rb
|
168
|
-
- test/test-libstask.rb
|
167
|
+
- test/test-delphi.rb
|
169
168
|
- test/test-echo.rb
|
170
|
-
- test/test-
|
169
|
+
- test/test-envvariables.rb
|
170
|
+
- test/test-gemversion.rb
|
171
|
+
- test/test-git.rb
|
172
|
+
- test/test-hashes.rb
|
171
173
|
- test/test-ini.rb
|
174
|
+
- test/test-libstask.rb
|
175
|
+
- test/test-projectinfo-android-xe7.rb
|
172
176
|
- test/test-projectinfo-android.rb
|
173
|
-
- test/test-delphi.rb
|
174
177
|
- test/test-projectinfo.rb
|
175
|
-
- test/test-
|
176
|
-
- test/test-
|
177
|
-
- test/helpers/verinfo.rb
|
178
|
+
- test/test-string.rb
|
179
|
+
- test/test-zip.rb
|
178
180
|
- test/helpers/consts.rb
|
179
|
-
- test/
|
181
|
+
- test/helpers/verinfo.rb
|
180
182
|
- test/resources/echo/file.in
|
181
|
-
- test/resources/
|
183
|
+
- test/resources/echo/file.out
|
184
|
+
- test/resources/hashes/hash.2.file
|
185
|
+
- test/resources/hashes/hash.file
|
186
|
+
- test/resources/ini/file.ini
|
187
|
+
- test/resources/testproject/ExplicitLib/ExplicitLibUnit.pas
|
182
188
|
- test/resources/testproject/lib/AnyLib/LibUnit.pas
|
183
|
-
- test/resources/testproject/
|
189
|
+
- test/resources/testproject/local.resources.ext.txt
|
190
|
+
- test/resources/testproject/local.resources.txt
|
184
191
|
- test/resources/testproject/Rakefile.rb
|
192
|
+
- test/resources/testproject/release.dcc.cfg
|
193
|
+
- test/resources/testproject/resources.rc
|
194
|
+
- test/resources/testproject/resources_ext.rc
|
185
195
|
- test/resources/testproject/testproject.2006.bdsproj
|
186
196
|
- test/resources/testproject/testproject.2007.dproj
|
187
|
-
- test/resources/testproject/resources.rc
|
188
|
-
- test/resources/testproject/testproject.xe5.dproj
|
189
|
-
- test/resources/testproject/testproject.dpr
|
190
|
-
- test/resources/testproject/testproject.ico
|
191
|
-
- test/resources/testproject/ExplicitLib/ExplicitLibUnit.pas
|
192
|
-
- test/resources/testproject/local.resources.txt
|
193
197
|
- test/resources/testproject/testproject.2010.dproj
|
194
198
|
- test/resources/testproject/testproject.cfg
|
195
|
-
- test/resources/
|
196
|
-
- test/resources/
|
197
|
-
- test/resources/testproject
|
198
|
-
- test/resources/testproject
|
199
|
-
- test/resources/testproject
|
200
|
-
- test/resources/testproject-android/Rakefile.rb
|
201
|
-
- test/resources/testproject-android/resources.rc
|
202
|
-
- test/resources/testproject-android/TestProject.xe5.dproj
|
203
|
-
- test/resources/testproject-android/TestProject.dpr
|
204
|
-
- test/resources/testproject-android/ExplicitLib/ExplicitLibUnit.pas
|
199
|
+
- test/resources/testproject/testproject.dpr
|
200
|
+
- test/resources/testproject/testproject.ico
|
201
|
+
- test/resources/testproject/testproject.rc
|
202
|
+
- test/resources/testproject/testproject.xe5.dproj
|
203
|
+
- test/resources/testproject/testproject.xe7.dproj
|
205
204
|
- test/resources/testproject-android/AndroidManifest.erb
|
205
|
+
- test/resources/testproject-android/AndroidManifest.xml
|
206
|
+
- test/resources/testproject-android/ExplicitLib/ExplicitLibUnit.pas
|
206
207
|
- test/resources/testproject-android/external/module.ext
|
207
|
-
- test/resources/testproject-android/local.resources.txt
|
208
208
|
- test/resources/testproject-android/fmTest.fmx
|
209
209
|
- test/resources/testproject-android/fmTest.pas
|
210
|
-
- test/resources/
|
211
|
-
- test/resources/
|
210
|
+
- test/resources/testproject-android/lib/AnyLib/LibUnit.pas
|
211
|
+
- test/resources/testproject-android/local.resources.txt
|
212
|
+
- test/resources/testproject-android/Rakefile.rb
|
213
|
+
- test/resources/testproject-android/release.dcc.cfg
|
214
|
+
- test/resources/testproject-android/resources.rc
|
215
|
+
- test/resources/testproject-android/TestProject.cfg
|
216
|
+
- test/resources/testproject-android/TestProject.dpr
|
217
|
+
- test/resources/testproject-android/TestProject.rc
|
218
|
+
- test/resources/testproject-android/TestProject.xe5.dproj
|
219
|
+
- test/resources/testproject-android/TestProject.xe7.dproj
|
212
220
|
- test/resources/libstask/lib/level-1/level-2-1/level-3-1/.gitkeep
|
213
221
|
- test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
|
222
|
+
- test/resources/libstask/lib/level-1/level-2-2/.gitkeep
|
214
223
|
homepage: http://github.com/ashumkin/rake-delphi.gem
|
215
224
|
licenses:
|
216
225
|
- MIT
|
@@ -226,7 +235,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
226
235
|
version: '0'
|
227
236
|
segments:
|
228
237
|
- 0
|
229
|
-
hash:
|
238
|
+
hash: 801388531
|
230
239
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
231
240
|
none: false
|
232
241
|
requirements:
|
@@ -235,63 +244,69 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
235
244
|
version: '0'
|
236
245
|
segments:
|
237
246
|
- 0
|
238
|
-
hash:
|
247
|
+
hash: 801388531
|
239
248
|
requirements: []
|
240
249
|
rubyforge_project:
|
241
|
-
rubygems_version: 1.8.
|
250
|
+
rubygems_version: 1.8.25
|
242
251
|
signing_key:
|
243
252
|
specification_version: 3
|
244
253
|
summary: Tasks for building Delphi projects
|
245
254
|
test_files:
|
246
|
-
- test/test-
|
255
|
+
- test/test-delphi-android.rb
|
247
256
|
- test/test-delphi-xe7-android.rb
|
248
|
-
- test/test-
|
249
|
-
- test/test-git.rb
|
250
|
-
- test/test-projectinfo-android-xe7.rb
|
251
|
-
- test/test-gemversion.rb
|
252
|
-
- test/test-libstask.rb
|
257
|
+
- test/test-delphi.rb
|
253
258
|
- test/test-echo.rb
|
254
|
-
- test/test-
|
259
|
+
- test/test-envvariables.rb
|
260
|
+
- test/test-gemversion.rb
|
261
|
+
- test/test-git.rb
|
262
|
+
- test/test-hashes.rb
|
255
263
|
- test/test-ini.rb
|
264
|
+
- test/test-libstask.rb
|
265
|
+
- test/test-projectinfo-android-xe7.rb
|
256
266
|
- test/test-projectinfo-android.rb
|
257
|
-
- test/test-delphi.rb
|
258
267
|
- test/test-projectinfo.rb
|
259
|
-
- test/test-
|
260
|
-
- test/test-
|
261
|
-
- test/helpers/verinfo.rb
|
268
|
+
- test/test-string.rb
|
269
|
+
- test/test-zip.rb
|
262
270
|
- test/helpers/consts.rb
|
263
|
-
- test/
|
271
|
+
- test/helpers/verinfo.rb
|
264
272
|
- test/resources/echo/file.in
|
265
|
-
- test/resources/
|
273
|
+
- test/resources/echo/file.out
|
274
|
+
- test/resources/hashes/hash.2.file
|
275
|
+
- test/resources/hashes/hash.file
|
276
|
+
- test/resources/ini/file.ini
|
277
|
+
- test/resources/testproject/ExplicitLib/ExplicitLibUnit.pas
|
266
278
|
- test/resources/testproject/lib/AnyLib/LibUnit.pas
|
267
|
-
- test/resources/testproject/
|
279
|
+
- test/resources/testproject/local.resources.ext.txt
|
280
|
+
- test/resources/testproject/local.resources.txt
|
268
281
|
- test/resources/testproject/Rakefile.rb
|
282
|
+
- test/resources/testproject/release.dcc.cfg
|
283
|
+
- test/resources/testproject/resources.rc
|
284
|
+
- test/resources/testproject/resources_ext.rc
|
269
285
|
- test/resources/testproject/testproject.2006.bdsproj
|
270
286
|
- test/resources/testproject/testproject.2007.dproj
|
271
|
-
- test/resources/testproject/resources.rc
|
272
|
-
- test/resources/testproject/testproject.xe5.dproj
|
273
|
-
- test/resources/testproject/testproject.dpr
|
274
|
-
- test/resources/testproject/testproject.ico
|
275
|
-
- test/resources/testproject/ExplicitLib/ExplicitLibUnit.pas
|
276
|
-
- test/resources/testproject/local.resources.txt
|
277
287
|
- test/resources/testproject/testproject.2010.dproj
|
278
288
|
- test/resources/testproject/testproject.cfg
|
279
|
-
- test/resources/
|
280
|
-
- test/resources/
|
281
|
-
- test/resources/testproject
|
282
|
-
- test/resources/testproject
|
283
|
-
- test/resources/testproject
|
284
|
-
- test/resources/testproject-android/Rakefile.rb
|
285
|
-
- test/resources/testproject-android/resources.rc
|
286
|
-
- test/resources/testproject-android/TestProject.xe5.dproj
|
287
|
-
- test/resources/testproject-android/TestProject.dpr
|
288
|
-
- test/resources/testproject-android/ExplicitLib/ExplicitLibUnit.pas
|
289
|
+
- test/resources/testproject/testproject.dpr
|
290
|
+
- test/resources/testproject/testproject.ico
|
291
|
+
- test/resources/testproject/testproject.rc
|
292
|
+
- test/resources/testproject/testproject.xe5.dproj
|
293
|
+
- test/resources/testproject/testproject.xe7.dproj
|
289
294
|
- test/resources/testproject-android/AndroidManifest.erb
|
295
|
+
- test/resources/testproject-android/AndroidManifest.xml
|
296
|
+
- test/resources/testproject-android/ExplicitLib/ExplicitLibUnit.pas
|
290
297
|
- test/resources/testproject-android/external/module.ext
|
291
|
-
- test/resources/testproject-android/local.resources.txt
|
292
298
|
- test/resources/testproject-android/fmTest.fmx
|
293
299
|
- test/resources/testproject-android/fmTest.pas
|
294
|
-
- test/resources/
|
295
|
-
- test/resources/
|
300
|
+
- test/resources/testproject-android/lib/AnyLib/LibUnit.pas
|
301
|
+
- test/resources/testproject-android/local.resources.txt
|
302
|
+
- test/resources/testproject-android/Rakefile.rb
|
303
|
+
- test/resources/testproject-android/release.dcc.cfg
|
304
|
+
- test/resources/testproject-android/resources.rc
|
305
|
+
- test/resources/testproject-android/TestProject.cfg
|
306
|
+
- test/resources/testproject-android/TestProject.dpr
|
307
|
+
- test/resources/testproject-android/TestProject.rc
|
308
|
+
- test/resources/testproject-android/TestProject.xe5.dproj
|
309
|
+
- test/resources/testproject-android/TestProject.xe7.dproj
|
296
310
|
- test/resources/libstask/lib/level-1/level-2-1/level-3-1/.gitkeep
|
297
311
|
- test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
|
312
|
+
- test/resources/libstask/lib/level-1/level-2-2/.gitkeep
|