tidyflash 0.1.7 → 0.1.8
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/Manifest +2 -0
- data/README +9 -8
- data/Rakefile +1 -1
- data/templates/project/rakefile.rb +1 -0
- data/templates/project/tasks/flash_libraries.rb +8 -0
- data/tidyflash.gemspec +3 -3
- metadata +4 -3
data/Manifest
CHANGED
@@ -29,6 +29,7 @@ templates/project/src/app/models/App.as
|
|
29
29
|
templates/project/src/app/models/FlashVars.as
|
30
30
|
templates/project/src/app/views/MainView.as
|
31
31
|
templates/project/src/app/views/PreloaderView.as
|
32
|
+
templates/project/tasks/flash_libraries.rb
|
32
33
|
templates/scaffold/bin/xml/__model.xml
|
33
34
|
templates/scaffold/scaffold.rb
|
34
35
|
templates/scaffold/src/models/__Model.as
|
@@ -39,3 +40,4 @@ templates/swfobject/bin/index.html
|
|
39
40
|
templates/swfobject/bin/js/swfobject.js
|
40
41
|
templates/swfobject/swfobject.rb
|
41
42
|
test/test_tidy_project.rb
|
43
|
+
tidyflash.gemspec
|
data/README
CHANGED
@@ -1,12 +1,6 @@
|
|
1
1
|
Following in the footsteps of Ruby On Rails, Processing, _why's Shoes and Luke Bayes' Sprouts library, here is a Flash framework that funnels the brilliance of all these people into a single set of libraries for developing Flash.
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
tidyproject SomeProject
|
6
|
-
cd SomeProject
|
7
|
-
rake
|
8
|
-
|
9
|
-
BEFORE YOU START (on Ubuntu)
|
3
|
+
INSTALLATION (on Ubuntu)
|
10
4
|
|
11
5
|
sudo apt-get install ruby rake rubygems libopenssl-ruby git-core ubuntu-restricted-extras
|
12
6
|
gem install tidyflash
|
@@ -21,4 +15,11 @@ and for now, hack
|
|
21
15
|
|
22
16
|
/var/lib/gems/1.8/gems/sprout-as3-bundle-1.0.36/lib/sprout/fcsh_service.rb
|
23
17
|
|
24
|
-
to reference flex4sdk instead of flex3sdk
|
18
|
+
to reference flex4sdk instead of flex3sdk
|
19
|
+
|
20
|
+
USAGE:
|
21
|
+
|
22
|
+
tidyflash SomeProject
|
23
|
+
cd SomeProject
|
24
|
+
rake
|
25
|
+
|
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('tidyflash', '0.1.
|
5
|
+
Echoe.new('tidyflash', '0.1.8') do |p|
|
6
6
|
p.description = "Tidy Flash - an ActionScript framework for people who love Ruby"
|
7
7
|
p.url = "http://github.com/michaelforrest/tidy"
|
8
8
|
p.author = "Michael Forrest"
|
@@ -1,6 +1,7 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'tidy/compile'
|
3
3
|
require 'tidy/air_packager'
|
4
|
+
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
|
4
5
|
#desc 'compile and run air app (needs a couple of extra files manually created so far)'
|
5
6
|
#task :air do |t|
|
6
7
|
# Compile.air :main=>"src/Fubuntu.as", :output=>"Fubuntu-air"
|
data/tidyflash.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{tidyflash}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.8"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Michael Forrest"]
|
9
|
-
s.date = %q{2010-04-
|
9
|
+
s.date = %q{2010-04-16}
|
10
10
|
s.description = %q{Tidy Flash - an ActionScript framework for people who love Ruby}
|
11
11
|
s.email = %q{mf@grimaceworks.com}
|
12
12
|
s.executables = ["test_project.axml", "tidyflash"]
|
13
13
|
s.extra_rdoc_files = ["README", "bin/test_project.axml", "bin/tidyflash", "lib/script/bwlimit.rb", "lib/script/generate", "lib/script/server", "lib/script/server.rb", "lib/tasks/assets.rb", "lib/tasks/demo_config.rb", "lib/tasks/deploy.rb", "lib/tidy/air_packager.rb", "lib/tidy/axml.rb", "lib/tidy/compile.rb", "lib/tidy/generate.rb", "lib/tidy/template.rb", "lib/tidy/template_binding.rb", "lib/tidy/templates/air.axml.erb", "lib/tidy/templates/demo_config.as.erb", "lib/tidy_project.rb"]
|
14
|
-
s.files = ["Manifest", "README", "Rakefile", "bin/test_project.axml", "bin/tidyflash", "lib/script/bwlimit.rb", "lib/script/generate", "lib/script/server", "lib/script/server.rb", "lib/tasks/assets.rb", "lib/tasks/demo_config.rb", "lib/tasks/deploy.rb", "lib/tidy/air_packager.rb", "lib/tidy/axml.rb", "lib/tidy/compile.rb", "lib/tidy/generate.rb", "lib/tidy/template.rb", "lib/tidy/template_binding.rb", "lib/tidy/templates/air.axml.erb", "lib/tidy/templates/demo_config.as.erb", "lib/tidy_project.rb", "templates/project/project.rb", "templates/project/rakefile.rb", "templates/project/script/fcsh/rakefile.rb", "templates/project/src/app/helpers/Colours.as", "templates/project/src/app/helpers/Debug.as", "templates/project/src/app/helpers/Typography.as", "templates/project/src/app/models/App.as", "templates/project/src/app/models/FlashVars.as", "templates/project/src/app/views/MainView.as", "templates/project/src/app/views/PreloaderView.as", "templates/scaffold/bin/xml/__model.xml", "templates/scaffold/scaffold.rb", "templates/scaffold/src/models/__Model.as", "templates/scaffold/src/views/__model/__ModelDetailView.as", "templates/scaffold/src/views/__model/__ModelListItemView.as", "templates/scaffold/src/views/__model/__ModelListView.as", "templates/swfobject/bin/index.html", "templates/swfobject/bin/js/swfobject.js", "templates/swfobject/swfobject.rb", "test/test_tidy_project.rb", "tidyflash.gemspec"]
|
14
|
+
s.files = ["Manifest", "README", "Rakefile", "bin/test_project.axml", "bin/tidyflash", "lib/script/bwlimit.rb", "lib/script/generate", "lib/script/server", "lib/script/server.rb", "lib/tasks/assets.rb", "lib/tasks/demo_config.rb", "lib/tasks/deploy.rb", "lib/tidy/air_packager.rb", "lib/tidy/axml.rb", "lib/tidy/compile.rb", "lib/tidy/generate.rb", "lib/tidy/template.rb", "lib/tidy/template_binding.rb", "lib/tidy/templates/air.axml.erb", "lib/tidy/templates/demo_config.as.erb", "lib/tidy_project.rb", "templates/project/project.rb", "templates/project/rakefile.rb", "templates/project/script/fcsh/rakefile.rb", "templates/project/src/app/helpers/Colours.as", "templates/project/src/app/helpers/Debug.as", "templates/project/src/app/helpers/Typography.as", "templates/project/src/app/models/App.as", "templates/project/src/app/models/FlashVars.as", "templates/project/src/app/views/MainView.as", "templates/project/src/app/views/PreloaderView.as", "templates/project/tasks/flash_libraries.rb", "templates/scaffold/bin/xml/__model.xml", "templates/scaffold/scaffold.rb", "templates/scaffold/src/models/__Model.as", "templates/scaffold/src/views/__model/__ModelDetailView.as", "templates/scaffold/src/views/__model/__ModelListItemView.as", "templates/scaffold/src/views/__model/__ModelListView.as", "templates/swfobject/bin/index.html", "templates/swfobject/bin/js/swfobject.js", "templates/swfobject/swfobject.rb", "test/test_tidy_project.rb", "tidyflash.gemspec"]
|
15
15
|
s.homepage = %q{http://github.com/michaelforrest/tidy}
|
16
16
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Tidyflash", "--main", "README"]
|
17
17
|
s.require_paths = ["lib"]
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 8
|
9
|
+
version: 0.1.8
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Michael Forrest
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-04-
|
17
|
+
date: 2010-04-16 00:00:00 +01:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -124,6 +124,7 @@ files:
|
|
124
124
|
- templates/project/src/app/models/FlashVars.as
|
125
125
|
- templates/project/src/app/views/MainView.as
|
126
126
|
- templates/project/src/app/views/PreloaderView.as
|
127
|
+
- templates/project/tasks/flash_libraries.rb
|
127
128
|
- templates/scaffold/bin/xml/__model.xml
|
128
129
|
- templates/scaffold/scaffold.rb
|
129
130
|
- templates/scaffold/src/models/__Model.as
|