tidyflash 0.1.8 → 0.1.9

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 CHANGED
@@ -29,7 +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
+ templates/project/src/app/views/ViewBase.as
33
33
  templates/scaffold/bin/xml/__model.xml
34
34
  templates/scaffold/scaffold.rb
35
35
  templates/scaffold/src/models/__Model.as
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.8') do |p|
5
+ Echoe.new('tidyflash', '0.1.9') 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,5 +1,6 @@
1
1
  package app.views {
2
- import tidy.mvc.view.ViewBase;
2
+ import app.views.ViewBase;
3
+
3
4
  /**
4
5
  * Main Entry Point Class
5
6
  * <%= credit %>
@@ -8,8 +9,9 @@ package app.views {
8
9
  public class MainView extends ViewBase {
9
10
 
10
11
  public function MainView() {
11
- super({paddingLeft:20, paddingTop:20, columnWidth:600 });
12
- trace("Hello from this src/app/views/MainView")
12
+ super();
13
+ trace("Hello from this src/app/views/MainView");
14
+
13
15
  append(text("It worked! Edit this view in src/app/views/MainView"));
14
16
  }
15
17
  }
@@ -0,0 +1,13 @@
1
+ package app.views {
2
+ import tidy.mvc.view.PackableView;
3
+ import app.helpers.Typography;
4
+ /**
5
+ * @author michaelforrest
6
+ */
7
+ public class ViewBase extends PackableView {
8
+ private static const IMPORTS : Array = [Typography];
9
+ public function ViewBase(options : Object = null) {
10
+ super(options);
11
+ }
12
+ }
13
+ }
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.8"
5
+ s.version = "0.1.9"
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-16}
9
+ s.date = %q{2010-04-19}
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/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"]
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/src/app/views/ViewBase.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"]
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
- - 8
9
- version: 0.1.8
8
+ - 9
9
+ version: 0.1.9
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-16 00:00:00 +01:00
17
+ date: 2010-04-19 00:00:00 +01:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -124,7 +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
+ - templates/project/src/app/views/ViewBase.as
128
128
  - templates/scaffold/bin/xml/__model.xml
129
129
  - templates/scaffold/scaffold.rb
130
130
  - templates/scaffold/src/models/__Model.as
@@ -1,8 +0,0 @@
1
- namespace :lib
2
- desc 'Update the Flash libraries from github'
3
- task :update do
4
- Dir.chdir("~/.tidy/tidy-as3") do
5
- `git pull`
6
- end
7
- end
8
- end