asproject 0.1.36 → 0.1.37
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/bin/asclass +0 -1
- data/lib/asclass.rb +1 -0
- data/lib/asproject.rb +1 -1
- data/lib/asproject/version.rb +1 -1
- data/templates/asclass/mxml/.crap_file +10 -0
- data/templates/asproject/as2/art/.crap_file +10 -0
- data/templates/asproject/as2/doc/.crap_file +10 -0
- data/templates/asproject/as2/project/README.txt +51 -0
- data/templates/asproject/as2/project/bin/.crap_file +10 -0
- data/templates/asproject/as2/project/lib/.crap_file +10 -0
- data/templates/asproject/as3/art/.crap_file +10 -0
- data/templates/asproject/as3/doc/.crap_file +10 -0
- data/templates/asproject/as3/project/bin/.crap_file +10 -0
- data/templates/asproject/as3/project/lib/.crap_file +10 -0
- data/templates/asproject/as3/project/test/.crap_file +10 -0
- data/templates/asproject/mxml/.crap_file +10 -0
- metadata +14 -1
data/bin/asclass
CHANGED
data/lib/asclass.rb
CHANGED
data/lib/asproject.rb
CHANGED
@@ -23,7 +23,7 @@ module AsProject
|
|
23
23
|
class AsProject < AsProjectBase
|
24
24
|
@@ASPROJECT_FILE_NAME = 'AsProject'
|
25
25
|
@@TEMPLATE_TYPE = 'asproject'
|
26
|
-
@@DEFAULT_TEMPLATES = ['
|
26
|
+
@@DEFAULT_TEMPLATES = ['as2', 'config', 'asunit25', 'fdt']
|
27
27
|
|
28
28
|
def initialize(args=nil)
|
29
29
|
execute(args)
|
data/lib/asproject/version.rb
CHANGED
@@ -0,0 +1,51 @@
|
|
1
|
+
|
2
|
+
########################################
|
3
|
+
This project was generated using AsProject
|
4
|
+
http://code.google.com/p/asproject/
|
5
|
+
|
6
|
+
Please report any bugs to:
|
7
|
+
http://code.google.com/p/asproject/issues/list
|
8
|
+
|
9
|
+
Please feel free to ask questions at:
|
10
|
+
http://groups.google.com/group/asproject-users
|
11
|
+
|
12
|
+
|
13
|
+
########################################
|
14
|
+
Using your favorite terminal, cd to this directory have fun!
|
15
|
+
|
16
|
+
|
17
|
+
########################################
|
18
|
+
To create a new ActionScript class, TestCase and rebuild your TestSuites:
|
19
|
+
|
20
|
+
asclass -s <%= project_name.downcase %>.utils.MathUtil
|
21
|
+
|
22
|
+
|
23
|
+
########################################
|
24
|
+
To create a new ActionScript begin the name with I + Capital letter (eg: ISomeName)
|
25
|
+
or end the name with 'able'
|
26
|
+
|
27
|
+
asclass <%= project_name.downcase %>.utils.ISomeName
|
28
|
+
|
29
|
+
or
|
30
|
+
|
31
|
+
asclass <%= project_name.downcase %>.utils.Observable
|
32
|
+
|
33
|
+
|
34
|
+
########################################
|
35
|
+
To compile and launch your application:
|
36
|
+
|
37
|
+
rake
|
38
|
+
|
39
|
+
|
40
|
+
########################################
|
41
|
+
To compile and launch your test suites:
|
42
|
+
|
43
|
+
rake test
|
44
|
+
|
45
|
+
|
46
|
+
########################################
|
47
|
+
To see all available rake tasks:
|
48
|
+
|
49
|
+
rake -T
|
50
|
+
|
51
|
+
|
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: asproject
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.1.
|
6
|
+
version: 0.1.37
|
7
7
|
date: 2007-03-04 00:00:00 -08:00
|
8
8
|
summary: AsProject is a tool set that simplifies the process of beginning and growing a new ActionScript project.
|
9
9
|
require_paths:
|
@@ -35,6 +35,7 @@ files:
|
|
35
35
|
- lib
|
36
36
|
- Manifest.txt
|
37
37
|
- MIT-LICENSE.txt
|
38
|
+
- pkg
|
38
39
|
- rakefile.rb
|
39
40
|
- README.txt
|
40
41
|
- setup.rb
|
@@ -99,6 +100,7 @@ files:
|
|
99
100
|
- templates/asproject/as2/project/bin
|
100
101
|
- templates/asproject/as2/project/lib
|
101
102
|
- templates/asproject/as2/project/rakefile.rb
|
103
|
+
- templates/asproject/as2/project/README.txt
|
102
104
|
- templates/asproject/as2/project/src
|
103
105
|
- templates/asproject/as2/project/test
|
104
106
|
- templates/asproject/as2/project/assets/img
|
@@ -250,12 +252,23 @@ files:
|
|
250
252
|
- templates/ide/mate/Create Class.tmCommand
|
251
253
|
- templates/ide/mate/Rebuild Test Suites.tmCommand
|
252
254
|
- templates/ide/mate/Run Rake Task.tmCommand
|
255
|
+
- templates/asclass/mxml/.crap_file
|
256
|
+
- templates/asproject/as2/art/.crap_file
|
257
|
+
- templates/asproject/as2/doc/.crap_file
|
258
|
+
- templates/asproject/as2/project/bin/.crap_file
|
259
|
+
- templates/asproject/as2/project/lib/.crap_file
|
260
|
+
- templates/asproject/as3/art/.crap_file
|
261
|
+
- templates/asproject/as3/doc/.crap_file
|
262
|
+
- templates/asproject/as3/project/bin/.crap_file
|
263
|
+
- templates/asproject/as3/project/lib/.crap_file
|
264
|
+
- templates/asproject/as3/project/test/.crap_file
|
253
265
|
- templates/asproject/fb2as/project/.actionScriptProperties
|
254
266
|
- templates/asproject/fb2as/project/.project
|
255
267
|
- templates/asproject/fb2as/project/.settings
|
256
268
|
- templates/asproject/fdt/project/.as2_classpath
|
257
269
|
- templates/asproject/fdt/project/.project
|
258
270
|
- templates/asproject/fdt/project/.settings
|
271
|
+
- templates/asproject/mxml/.crap_file
|
259
272
|
test_files: []
|
260
273
|
|
261
274
|
rdoc_options:
|