ymdp 0.0.3

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.
Files changed (37) hide show
  1. data/.document +5 -0
  2. data/.gitignore +21 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +17 -0
  5. data/Rakefile +53 -0
  6. data/VERSION +1 -0
  7. data/lib/application_view/application_view.rb +210 -0
  8. data/lib/application_view/asset_tag_helper.rb +106 -0
  9. data/lib/application_view/commands/generate.rb +3 -0
  10. data/lib/application_view/compiler/template_compiler.rb +417 -0
  11. data/lib/application_view/config.rb +39 -0
  12. data/lib/application_view/environment.rb +29 -0
  13. data/lib/application_view/generator/base.rb +15 -0
  14. data/lib/application_view/generator/templates/javascript.js +51 -0
  15. data/lib/application_view/generator/templates/stylesheet.css +5 -0
  16. data/lib/application_view/generator/templates/translation.pres +8 -0
  17. data/lib/application_view/generator/templates/view.html.haml +8 -0
  18. data/lib/application_view/generator/view.rb +170 -0
  19. data/lib/application_view/helpers.rb +4 -0
  20. data/lib/application_view/processor/compressor.rb +81 -0
  21. data/lib/application_view/processor/processor.rb +132 -0
  22. data/lib/application_view/processor/validator.rb +125 -0
  23. data/lib/application_view/support/file.rb +54 -0
  24. data/lib/application_view/support/form_post.rb +58 -0
  25. data/lib/application_view/support/g.rb +11 -0
  26. data/lib/application_view/support/growl.rb +36 -0
  27. data/lib/application_view/support/timer.rb +40 -0
  28. data/lib/application_view/support/w3c.rb +22 -0
  29. data/lib/application_view/tag_helper.rb +147 -0
  30. data/lib/application_view/translator/base.rb +387 -0
  31. data/lib/application_view/translator/blank.rb +58 -0
  32. data/lib/application_view/translator/ymdp_translate.rb +92 -0
  33. data/lib/ymdp.rb +1 -0
  34. data/test/helper.rb +10 -0
  35. data/test/test_ymdp.rb +4 -0
  36. data/ymdp.gemspec +77 -0
  37. metadata +92 -0
@@ -0,0 +1 @@
1
+ require 'lib/environment'
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
7
+ require 'ymdp'
8
+
9
+ class Test::Unit::TestCase
10
+ end
@@ -0,0 +1,4 @@
1
+ require 'helper'
2
+
3
+ class TestYmdp < Test::Unit::TestCase
4
+ end
@@ -0,0 +1,77 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{ymdp}
8
+ s.version = "0.0.3"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Jeff Coleman"]
12
+ s.date = %q{2010-01-10}
13
+ s.description = %q{Framework for developing applications in the Yahoo! Mail Development Platform.}
14
+ s.email = %q{progressions@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "lib/application_view/application_view.rb",
27
+ "lib/application_view/asset_tag_helper.rb",
28
+ "lib/application_view/commands/generate.rb",
29
+ "lib/application_view/compiler/template_compiler.rb",
30
+ "lib/application_view/config.rb",
31
+ "lib/application_view/environment.rb",
32
+ "lib/application_view/generator/base.rb",
33
+ "lib/application_view/generator/templates/javascript.js",
34
+ "lib/application_view/generator/templates/stylesheet.css",
35
+ "lib/application_view/generator/templates/translation.pres",
36
+ "lib/application_view/generator/templates/view.html.haml",
37
+ "lib/application_view/generator/view.rb",
38
+ "lib/application_view/helpers.rb",
39
+ "lib/application_view/processor/compressor.rb",
40
+ "lib/application_view/processor/processor.rb",
41
+ "lib/application_view/processor/validator.rb",
42
+ "lib/application_view/support/file.rb",
43
+ "lib/application_view/support/form_post.rb",
44
+ "lib/application_view/support/g.rb",
45
+ "lib/application_view/support/growl.rb",
46
+ "lib/application_view/support/timer.rb",
47
+ "lib/application_view/support/w3c.rb",
48
+ "lib/application_view/tag_helper.rb",
49
+ "lib/application_view/translator/base.rb",
50
+ "lib/application_view/translator/blank.rb",
51
+ "lib/application_view/translator/ymdp_translate.rb",
52
+ "lib/ymdp.rb",
53
+ "test/helper.rb",
54
+ "test/test_ymdp.rb",
55
+ "ymdp.gemspec"
56
+ ]
57
+ s.homepage = %q{http://github.com/progressions/ymdp}
58
+ s.rdoc_options = ["--charset=UTF-8"]
59
+ s.require_paths = ["lib"]
60
+ s.rubygems_version = %q{1.3.5}
61
+ s.summary = %q{Framework for developing applications in the Yahoo! Mail Development Platform}
62
+ s.test_files = [
63
+ "test/helper.rb",
64
+ "test/test_ymdp.rb"
65
+ ]
66
+
67
+ if s.respond_to? :specification_version then
68
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
69
+ s.specification_version = 3
70
+
71
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
72
+ else
73
+ end
74
+ else
75
+ end
76
+ end
77
+
metadata ADDED
@@ -0,0 +1,92 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ymdp
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Jeff Coleman
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-01-10 00:00:00 -06:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Framework for developing applications in the Yahoo! Mail Development Platform.
17
+ email: progressions@gmail.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - LICENSE
24
+ - README.rdoc
25
+ files:
26
+ - .document
27
+ - .gitignore
28
+ - LICENSE
29
+ - README.rdoc
30
+ - Rakefile
31
+ - VERSION
32
+ - lib/application_view/application_view.rb
33
+ - lib/application_view/asset_tag_helper.rb
34
+ - lib/application_view/commands/generate.rb
35
+ - lib/application_view/compiler/template_compiler.rb
36
+ - lib/application_view/config.rb
37
+ - lib/application_view/environment.rb
38
+ - lib/application_view/generator/base.rb
39
+ - lib/application_view/generator/templates/javascript.js
40
+ - lib/application_view/generator/templates/stylesheet.css
41
+ - lib/application_view/generator/templates/translation.pres
42
+ - lib/application_view/generator/templates/view.html.haml
43
+ - lib/application_view/generator/view.rb
44
+ - lib/application_view/helpers.rb
45
+ - lib/application_view/processor/compressor.rb
46
+ - lib/application_view/processor/processor.rb
47
+ - lib/application_view/processor/validator.rb
48
+ - lib/application_view/support/file.rb
49
+ - lib/application_view/support/form_post.rb
50
+ - lib/application_view/support/g.rb
51
+ - lib/application_view/support/growl.rb
52
+ - lib/application_view/support/timer.rb
53
+ - lib/application_view/support/w3c.rb
54
+ - lib/application_view/tag_helper.rb
55
+ - lib/application_view/translator/base.rb
56
+ - lib/application_view/translator/blank.rb
57
+ - lib/application_view/translator/ymdp_translate.rb
58
+ - lib/ymdp.rb
59
+ - test/helper.rb
60
+ - test/test_ymdp.rb
61
+ - ymdp.gemspec
62
+ has_rdoc: true
63
+ homepage: http://github.com/progressions/ymdp
64
+ licenses: []
65
+
66
+ post_install_message:
67
+ rdoc_options:
68
+ - --charset=UTF-8
69
+ require_paths:
70
+ - lib
71
+ required_ruby_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: "0"
76
+ version:
77
+ required_rubygems_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: "0"
82
+ version:
83
+ requirements: []
84
+
85
+ rubyforge_project:
86
+ rubygems_version: 1.3.5
87
+ signing_key:
88
+ specification_version: 3
89
+ summary: Framework for developing applications in the Yahoo! Mail Development Platform
90
+ test_files:
91
+ - test/helper.rb
92
+ - test/test_ymdp.rb