filament 0.1.1 → 0.1.2
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/CHANGELOG
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
0.1.2:
|
|
2
|
+
JavaME Plugin:
|
|
3
|
+
- Changed the default for obfuscating JavaME::Suite targets to false.
|
|
4
|
+
|
|
5
|
+
0.1.1:
|
|
6
|
+
Filament:
|
|
7
|
+
- Packages can't be hidden directories now
|
|
8
|
+
- Doesn't force working_dir and output_dir creation
|
|
9
|
+
- Package descriptor is now /package.rb instead of rakefile.rb
|
|
10
|
+
- package.rb is now evaluated within the scope of the Package object.
|
|
11
|
+
- targets are now defined by target(name, class, &block)
|
|
12
|
+
- future cleanups code cleanups will benefit from the two above items.
|
|
13
|
+
All Plugins:
|
|
14
|
+
- Updated external path references (Wtk, MppSdk, Proguard classes) to only use ENV
|
|
15
|
+
- Added ENV support for WTK_HOME, MPP_SDK_HOME, PROGUARD_HOME
|
|
16
|
+
Java Plugin:
|
|
17
|
+
- Added support for Proguard obfuscation
|
|
18
|
+
- Targets can output a 1-argument-block tagged :proguard and configure the obfuscator for dependencies
|
|
19
|
+
JavaME Plugin:
|
|
20
|
+
- Suite now takes itself into account when traversing deps for :jad_config outputs
|
|
21
|
+
- Obfuscation is available if you set obfuscate to true -- will auto-detect in the future
|
|
22
|
+
|
|
23
|
+
0.1.0:
|
|
24
|
+
Filament:
|
|
25
|
+
- Initial Release
|
|
@@ -23,7 +23,7 @@ module Filament::JavaME::Mixins
|
|
|
23
23
|
init_library
|
|
24
24
|
@descriptor_config = Proc.new {}
|
|
25
25
|
@package_deps = true
|
|
26
|
-
@obfuscate =
|
|
26
|
+
@obfuscate = false # TODO should be based on $build_type
|
|
27
27
|
@defaultmidlet_class = nil
|
|
28
28
|
@midlets = []
|
|
29
29
|
|
metadata
CHANGED
|
@@ -3,7 +3,7 @@ rubygems_version: 0.8.11
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: filament
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.1.
|
|
6
|
+
version: 0.1.2
|
|
7
7
|
date: 2006-03-16 00:00:00 -05:00
|
|
8
8
|
summary: A flexible dependency-based build platform based on Rake
|
|
9
9
|
require_paths:
|
|
@@ -112,12 +112,14 @@ files:
|
|
|
112
112
|
- plugins/05push/lib/filament/push/conduits/filter_conduit.rb
|
|
113
113
|
- plugins/05push/lib/filament/push/conduits/scp_conduit.rb
|
|
114
114
|
- README
|
|
115
|
+
- CHANGELOG
|
|
115
116
|
test_files: []
|
|
116
117
|
|
|
117
118
|
rdoc_options: []
|
|
118
119
|
|
|
119
120
|
extra_rdoc_files:
|
|
120
121
|
- README
|
|
122
|
+
- CHANGELOG
|
|
121
123
|
executables:
|
|
122
124
|
- filament
|
|
123
125
|
extensions: []
|