yellow-brick-road 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.rst CHANGED
@@ -23,7 +23,6 @@ To use yellow-brick-road in rails, add the gem to ``Gemfile``:
23
23
  ::
24
24
 
25
25
  gem 'yellow-brick-road',
26
- :git => 'git://github.com/alitn/yellow-brick-road.git',
27
26
  :submodules => true
28
27
 
29
28
  A copy of the closure library comes with the gem as a git submodule. The ``:submodules => true`` option is required to clone this copy.
@@ -6,10 +6,14 @@ module YellowBrickRoad
6
6
 
7
7
  # Constants.
8
8
  ROOT = File.expand_path File.join(File.dirname(__FILE__), '..', '..')
9
- VENDOR_ASSETS_ROOT = File.join ROOT, 'vendor'
10
- CLOSURE_LIBRARY_ROOT = File.join VENDOR_ASSETS_ROOT, 'closure-library'
9
+ VENDOR_ROOT = File.join ROOT, 'vendor'
10
+
11
+ CLOSURE_LIBRARY_ROOT = File.join VENDOR_ROOT, 'closure-library'
11
12
  CLOSURE_LIBRARY_BASE = File.join CLOSURE_LIBRARY_ROOT, 'closure', 'goog', 'base.js'
12
- CLOSURE_SOYUTILS_ROOT = File.join VENDOR_ASSETS_ROOT, 'closure-soyutils'
13
- CLOSURE_SOYUTILS_USEGOOG_ROOT = File.join VENDOR_ASSETS_ROOT, 'closure-soyutils-usegoog'
13
+
14
+ CLOSURE_SOYUTILS_ROOT = File.join VENDOR_ROOT, 'closure-soyutils'
15
+ CLOSURE_SOYUTILS_USEGOOG_ROOT = File.join VENDOR_ROOT, 'closure-soyutils-usegoog'
16
+
14
17
  CLOSURE_DEPSWRITER = File.join CLOSURE_LIBRARY_ROOT, 'closure', 'bin', 'build', 'depswriter.py'
18
+ CLOSURE_SOY_COMPILER = File.join VENDOR_ROOT, 'jars', 'SoyToJsSrcCompiler-111222.jar'
15
19
  end
@@ -1,5 +1,4 @@
1
1
  require 'tilt'
2
- require 'closure'
3
2
 
4
3
  module YellowBrickRoad
5
4
  class SoyProcessor < Tilt::Template
@@ -14,6 +13,15 @@ class SoyProcessor < Tilt::Template
14
13
 
15
14
  def prepare
16
15
  @namespace = self.class.default_namespace
16
+
17
+ @compiler_options = {}
18
+ if !Config.standalone_soy
19
+ @compiler_options.merge!({
20
+ shouldProvideRequireSoyNamespaces: '',
21
+ shouldGenerateJsdoc: '',
22
+ cssHandlingScheme: 'goog'
23
+ })
24
+ end
17
25
  end
18
26
 
19
27
  attr_reader :namespace
@@ -22,18 +30,9 @@ class SoyProcessor < Tilt::Template
22
30
  # Since SoyToJsSrcCompiler does not provide a stdout access to
23
31
  # the output, the output is written to a tempfile.
24
32
  tempoutput = Rails.root.join 'tmp', "soy-#{Time.now.to_i.to_s}.js"
33
+ compiler_options= @compiler_options.merge outputPathFormat: tempoutput
25
34
 
26
- compiler_args = []
27
- if !Config.standalone_soy
28
- compiler_args = compiler_args | %w{
29
- --shouldProvideRequireSoyNamespaces
30
- --cssHandlingScheme goog
31
- --shouldGenerateJsdoc
32
- }
33
- end
34
- compiler_args << "--outputPathFormat" << tempoutput
35
- compiler_args << file
36
- compile compiler_args
35
+ compile compiler_options
37
36
 
38
37
  @output = IO.read tempoutput
39
38
  File.delete tempoutput
@@ -43,13 +42,11 @@ class SoyProcessor < Tilt::Template
43
42
 
44
43
  private
45
44
 
46
- def compile args
47
- args = args.collect {|a| a.to_s } # for bools and numerics
48
-
49
- out, err = Closure.run_java Closure.config.soy_js_jar, 'com.google.template.soy.SoyToJsSrcCompiler', args
50
- unless err.empty?
51
- raise err
52
- end
45
+ def compile compiler_options
46
+ result = Utils::run_command "java -jar #{CLOSURE_SOY_COMPILER}",
47
+ command_arg: file,
48
+ command_options: compiler_options,
49
+ command_error_message: 'An error occured while running closure soy template compiler.'
53
50
  end
54
51
 
55
52
  end
@@ -5,12 +5,15 @@ class Utils
5
5
 
6
6
  def self.run_command command, options
7
7
  options = {
8
+ command_arg: nil,
8
9
  command_options: {},
9
10
  command_error_message: "An error occured while running command: #{command}"
10
11
  }.merge options
11
12
 
12
13
  command_options = self.serialize_options options[:command_options]
13
- command_string = [command, command_options].flatten.join(' ')
14
+ command_properties = [command, command_options]
15
+ command_properties << options[:command_arg] if options[:command_arg]
16
+ command_string = command_properties.flatten.join(' ')
14
17
 
15
18
  begin
16
19
  stdin, stdout, stderr = Open3.popen3 command_string
@@ -1,3 +1,3 @@
1
1
  module YellowBrickRoad
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
3
3
  end
@@ -13922,3 +13922,758 @@ Served asset /closure/goog/string/stringbuffer.js - 304 Not Modified (1ms)
13922
13922
 
13923
13923
  Started GET "/assets/soyutils_usegoog.js" for 127.0.0.1 at 2012-01-01 23:46:45 +0000
13924
13924
  Served asset /soyutils_usegoog.js - 304 Not Modified (3ms)
13925
+
13926
+
13927
+ Started GET "/assets/my-closure/simple.js.soy" for 127.0.0.1 at 2012-01-02 02:06:46 +0000
13928
+ Error compiling asset my-closure/simple.js.soy:
13929
+ NameError: undefined local variable or method `closure_roots_with_prefix' for #<YellowBrickRoad::SoyProcessor:0x00000102143fe0>
13930
+ (in /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/my-closure/simple.js.soy)
13931
+ Served asset /my-closure/simple.js.soy - 500 Internal Server Error
13932
+
13933
+
13934
+
13935
+ Started GET "/" for 127.0.0.1 at 2012-01-02 02:06:50 +0000
13936
+ Processing by ApplicationController#index as HTML
13937
+ Rendered application/index.html.erb within layouts/application (14.9ms)
13938
+ Cache for Asset (application.js) is stale
13939
+ undefined local variable or method `closure_roots_with_prefix' for #<YellowBrickRoad::SoyProcessor:0x0000010123d528>
13940
+ Completed 500 Internal Server Error in 84ms
13941
+
13942
+ ActionView::Template::Error (undefined local variable or method `command_arg' for YellowBrickRoad::Utils:Class
13943
+ (in /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/application.js)):
13944
+ 3: <head>
13945
+ 4: <title>Dummy</title>
13946
+ 5: <%= stylesheet_link_tag "application" %>
13947
+ 6: <%= javascript_include_tag "application" %>
13948
+ 7: <%= csrf_meta_tags %>
13949
+ 8: </head>
13950
+ 9: <body>
13951
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___3856262221410302770_2154589380'
13952
+
13953
+ Rendered /Users/ali/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
13954
+ Rendered /Users/ali/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
13955
+ Rendered /Users/ali/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.5ms)
13956
+
13957
+
13958
+ Started GET "/" for 127.0.0.1 at 2012-01-02 02:07:44 +0000
13959
+ Processing by ApplicationController#index as HTML
13960
+ Rendered application/index.html.erb within layouts/application (2.3ms)
13961
+ Cache for Asset (application.js) is stale
13962
+ undefined local variable or method `command_arg' for YellowBrickRoad::Utils:Class
13963
+ Completed 500 Internal Server Error in 61ms
13964
+
13965
+ ActionView::Template::Error (undefined local variable or method `command_arg' for YellowBrickRoad::Utils:Class
13966
+ (in /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/application.js)):
13967
+ 3: <head>
13968
+ 4: <title>Dummy</title>
13969
+ 5: <%= stylesheet_link_tag "application" %>
13970
+ 6: <%= javascript_include_tag "application" %>
13971
+ 7: <%= csrf_meta_tags %>
13972
+ 8: </head>
13973
+ 9: <body>
13974
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2153541326978482278_2161145980'
13975
+
13976
+ Rendered /Users/ali/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
13977
+ Rendered /Users/ali/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
13978
+ Rendered /Users/ali/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.7ms)
13979
+
13980
+
13981
+ Started GET "/" for 127.0.0.1 at 2012-01-02 02:10:14 +0000
13982
+ Processing by ApplicationController#index as HTML
13983
+ Rendered application/index.html.erb within layouts/application (2.3ms)
13984
+ Cache for Asset (application.js) is stale
13985
+ No such file or directory - /Volumes/Development/dev-web/yellow-brick-road/test/dummy/tmp/soy-1325470214.js
13986
+ Executed closure depswriter.py on root paths: /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/my-closure, /Volumes/Development/dev-web/yellow-brick-road/vendor/closure-soyutils-usegoog
13987
+ Compiled application.js (213ms) (pid 65926)
13988
+ Completed 500 Internal Server Error in 1491ms
13989
+
13990
+ ActionView::Template::Error (No such file or directory - /Volumes/Development/dev-web/yellow-brick-road/test/dummy/tmp/soy-1325470215.js
13991
+ (in /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/my-closure/simple.js.soy)):
13992
+ 3: <head>
13993
+ 4: <title>Dummy</title>
13994
+ 5: <%= stylesheet_link_tag "application" %>
13995
+ 6: <%= javascript_include_tag "application" %>
13996
+ 7: <%= csrf_meta_tags %>
13997
+ 8: </head>
13998
+ 9: <body>
13999
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___891737003991953472_2177809740'
14000
+
14001
+ Rendered /Users/ali/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
14002
+ Rendered /Users/ali/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
14003
+ Rendered /Users/ali/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.9ms)
14004
+
14005
+
14006
+ Started GET "/" for 127.0.0.1 at 2012-01-02 02:11:14 +0000
14007
+ Processing by ApplicationController#index as HTML
14008
+ Rendered application/index.html.erb within layouts/application (2.6ms)
14009
+ Cache for Asset (application.js) is stale
14010
+ An error occured while running closure soy template compiler.
14011
+
14012
+ Permission denied - /Volumes/Development/dev-web/yellow-brick-road/vendor/jars/SoyToJsSrcCompiler-111222.jar --shouldProvideRequireSoyNamespaces --shouldGenerateJsdoc --cssHandlingScheme goog --outputPathFormat /Volumes/Development/dev-web/yellow-brick-road/test/dummy/tmp/soy-1325470274.js /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/my-closure/simple.js.soy
14013
+ Executed closure depswriter.py on root paths: /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/my-closure, /Volumes/Development/dev-web/yellow-brick-road/vendor/closure-soyutils-usegoog
14014
+ Compiled application.js (135ms) (pid 65930)
14015
+ Completed 500 Internal Server Error in 200ms
14016
+
14017
+ ActionView::Template::Error (An error occured while running closure soy template compiler.
14018
+
14019
+ Permission denied - /Volumes/Development/dev-web/yellow-brick-road/vendor/jars/SoyToJsSrcCompiler-111222.jar --shouldProvideRequireSoyNamespaces --shouldGenerateJsdoc --cssHandlingScheme goog --outputPathFormat /Volumes/Development/dev-web/yellow-brick-road/test/dummy/tmp/soy-1325470274.js /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/my-closure/simple.js.soy
14020
+ (in /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/my-closure/simple.js.soy)):
14021
+ 3: <head>
14022
+ 4: <title>Dummy</title>
14023
+ 5: <%= stylesheet_link_tag "application" %>
14024
+ 6: <%= javascript_include_tag "application" %>
14025
+ 7: <%= csrf_meta_tags %>
14026
+ 8: </head>
14027
+ 9: <body>
14028
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2984654725729277046_2158622980'
14029
+
14030
+ Rendered /Users/ali/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
14031
+ Rendered /Users/ali/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
14032
+ Rendered /Users/ali/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms)
14033
+
14034
+
14035
+ Started GET "/" for 127.0.0.1 at 2012-01-02 02:12:07 +0000
14036
+ Processing by ApplicationController#index as HTML
14037
+ Rendered application/index.html.erb within layouts/application (2.5ms)
14038
+ Compiled my-closure/simple.js (2100ms) (pid 65934)
14039
+ Compiled my-closure/start.js (0ms) (pid 65934)
14040
+ Executed closure depswriter.py on root paths: /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/my-closure, /Volumes/Development/dev-web/yellow-brick-road/vendor/closure-soyutils-usegoog
14041
+ Compiled application.js (140ms) (pid 65934)
14042
+ Completed 200 OK in 2303ms (Views: 2302.1ms)
14043
+
14044
+
14045
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14046
+ Served asset /application.css - 304 Not Modified (0ms)
14047
+
14048
+
14049
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14050
+ Served asset /jquery.js - 304 Not Modified (10ms)
14051
+
14052
+
14053
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14054
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
14055
+
14056
+
14057
+ Started GET "/assets/my-closure/start.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14058
+ Served asset /my-closure/start.js - 200 OK (2ms)
14059
+
14060
+
14061
+ Started GET "/assets/closure/goog/base.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14062
+ Served asset /closure/goog/base.js - 304 Not Modified (2ms)
14063
+
14064
+
14065
+ Started GET "/assets/my-closure/simple.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14066
+ Served asset /my-closure/simple.js - 304 Not Modified (3ms)
14067
+
14068
+
14069
+ Started GET "/assets/closure-deps.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14070
+ Served asset /closure-deps.js - 304 Not Modified (2ms)
14071
+
14072
+
14073
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14074
+ Served asset /application.js - 200 OK (3ms)
14075
+
14076
+
14077
+ Started GET "/assets/closure/goog/deps.js" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14078
+ Served asset /closure/goog/deps.js - 304 Not Modified (5ms)
14079
+
14080
+
14081
+ Started GET "/assets/closure/goog/debug/error.js" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14082
+ Served asset /closure/goog/debug/error.js - 304 Not Modified (2ms)
14083
+
14084
+
14085
+ Started GET "/assets/closure/goog/string/string.js" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14086
+ Served asset /closure/goog/string/string.js - 304 Not Modified (2ms)
14087
+
14088
+
14089
+ Started GET "/assets/closure/goog/asserts/asserts.js" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14090
+ Served asset /closure/goog/asserts/asserts.js - 304 Not Modified (10ms)
14091
+
14092
+
14093
+ Started GET "/assets/closure/goog/array/array.js" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14094
+ Served asset /closure/goog/array/array.js - 304 Not Modified (4ms)
14095
+
14096
+
14097
+ Started GET "/assets/closure/goog/dom/browserfeature.js" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14098
+ Served asset /closure/goog/dom/browserfeature.js - 304 Not Modified (3ms)
14099
+
14100
+
14101
+ Started GET "/assets/closure/goog/dom/classes.js" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14102
+ Served asset /closure/goog/dom/classes.js - 304 Not Modified (3ms)
14103
+
14104
+
14105
+ Started GET "/assets/closure/goog/dom/tagname.js" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14106
+ Served asset /closure/goog/dom/tagname.js - 304 Not Modified (3ms)
14107
+
14108
+
14109
+ Started GET "/assets/closure/goog/useragent/useragent.js" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14110
+ Served asset /closure/goog/useragent/useragent.js - 304 Not Modified (3ms)
14111
+
14112
+
14113
+ Started GET "/assets/closure/goog/math/coordinate.js" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14114
+ Served asset /closure/goog/math/coordinate.js - 304 Not Modified (3ms)
14115
+
14116
+
14117
+ Started GET "/assets/closure/goog/object/object.js" for 127.0.0.1 at 2012-01-02 02:12:09 +0000
14118
+ Served asset /closure/goog/object/object.js - 304 Not Modified (5ms)
14119
+
14120
+
14121
+ Started GET "/assets/closure/goog/math/size.js" for 127.0.0.1 at 2012-01-02 02:12:10 +0000
14122
+ Served asset /closure/goog/math/size.js - 304 Not Modified (2ms)
14123
+
14124
+
14125
+ Started GET "/assets/closure/goog/dom/dom.js" for 127.0.0.1 at 2012-01-02 02:12:10 +0000
14126
+ Served asset /closure/goog/dom/dom.js - 304 Not Modified (8ms)
14127
+
14128
+
14129
+ Started GET "/assets/closure/goog/structs/inversionmap.js" for 127.0.0.1 at 2012-01-02 02:12:10 +0000
14130
+ Served asset /closure/goog/structs/inversionmap.js - 304 Not Modified (3ms)
14131
+
14132
+
14133
+ Started GET "/assets/closure/goog/i18n/graphemebreak.js" for 127.0.0.1 at 2012-01-02 02:12:10 +0000
14134
+ Served asset /closure/goog/i18n/graphemebreak.js - 304 Not Modified (3ms)
14135
+
14136
+
14137
+ Started GET "/assets/closure/goog/format/format.js" for 127.0.0.1 at 2012-01-02 02:12:10 +0000
14138
+ Served asset /closure/goog/format/format.js - 304 Not Modified (7ms)
14139
+
14140
+
14141
+ Started GET "/assets/closure/goog/string/stringbuffer.js" for 127.0.0.1 at 2012-01-02 02:12:10 +0000
14142
+ Served asset /closure/goog/string/stringbuffer.js - 304 Not Modified (6ms)
14143
+
14144
+
14145
+ Started GET "/assets/closure/goog/i18n/bidi.js" for 127.0.0.1 at 2012-01-02 02:12:10 +0000
14146
+ Served asset /closure/goog/i18n/bidi.js - 304 Not Modified (5ms)
14147
+
14148
+
14149
+ Started GET "/assets/closure/goog/useragent/jscript.js" for 127.0.0.1 at 2012-01-02 02:12:10 +0000
14150
+ Served asset /closure/goog/useragent/jscript.js - 304 Not Modified (2ms)
14151
+
14152
+
14153
+ Started GET "/assets/closure/goog/soy/soy.js" for 127.0.0.1 at 2012-01-02 02:12:10 +0000
14154
+ Served asset /closure/goog/soy/soy.js - 304 Not Modified (2ms)
14155
+
14156
+
14157
+ Started GET "/assets/closure/goog/i18n/bidiformatter.js" for 127.0.0.1 at 2012-01-02 02:12:10 +0000
14158
+ Served asset /closure/goog/i18n/bidiformatter.js - 304 Not Modified (2ms)
14159
+
14160
+
14161
+ Started GET "/assets/soyutils_usegoog.js" for 127.0.0.1 at 2012-01-02 02:12:10 +0000
14162
+ Served asset /soyutils_usegoog.js - 304 Not Modified (2ms)
14163
+
14164
+
14165
+ Started GET "/" for 127.0.0.1 at 2012-01-02 02:12:19 +0000
14166
+ Processing by ApplicationController#index as HTML
14167
+ Rendered application/index.html.erb within layouts/application (0.0ms)
14168
+ Compiled my-closure/start.js (0ms) (pid 65934)
14169
+ Executed closure depswriter.py on root paths: /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/my-closure, /Volumes/Development/dev-web/yellow-brick-road/vendor/closure-soyutils-usegoog
14170
+ Compiled application.js (133ms) (pid 65934)
14171
+ Completed 200 OK in 166ms (Views: 165.2ms)
14172
+
14173
+
14174
+ Started GET "/assets/closure/goog/base.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14175
+ Served asset /closure/goog/base.js - 304 Not Modified (8ms)
14176
+
14177
+
14178
+ Started GET "/assets/closure-deps.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14179
+ Served asset /closure-deps.js - 304 Not Modified (0ms)
14180
+
14181
+
14182
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14183
+ Served asset /application.css - 304 Not Modified (0ms)
14184
+
14185
+
14186
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14187
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
14188
+
14189
+
14190
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14191
+ Served asset /jquery.js - 304 Not Modified (4ms)
14192
+
14193
+
14194
+ Started GET "/assets/my-closure/simple.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14195
+ Served asset /my-closure/simple.js - 304 Not Modified (0ms)
14196
+
14197
+
14198
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14199
+ Served asset /application.js - 200 OK (2ms)
14200
+
14201
+
14202
+ Started GET "/assets/my-closure/start.js?body=1" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14203
+ Served asset /my-closure/start.js - 200 OK (5ms)
14204
+
14205
+
14206
+ Started GET "/assets/closure/goog/deps.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14207
+ Served asset /closure/goog/deps.js - 304 Not Modified (1ms)
14208
+
14209
+
14210
+ Started GET "/assets/closure/goog/debug/error.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14211
+ Served asset /closure/goog/debug/error.js - 304 Not Modified (0ms)
14212
+
14213
+
14214
+ Started GET "/assets/closure/goog/asserts/asserts.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14215
+ Served asset /closure/goog/asserts/asserts.js - 304 Not Modified (2ms)
14216
+
14217
+
14218
+ Started GET "/assets/closure/goog/useragent/useragent.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14219
+ Served asset /closure/goog/useragent/useragent.js - 304 Not Modified (2ms)
14220
+
14221
+
14222
+ Started GET "/assets/closure/goog/dom/browserfeature.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14223
+ Served asset /closure/goog/dom/browserfeature.js - 304 Not Modified (0ms)
14224
+
14225
+
14226
+ Started GET "/assets/closure/goog/array/array.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14227
+ Served asset /closure/goog/array/array.js - 304 Not Modified (1ms)
14228
+
14229
+
14230
+ Started GET "/assets/closure/goog/string/string.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14231
+ Served asset /closure/goog/string/string.js - 304 Not Modified (3ms)
14232
+
14233
+
14234
+ Started GET "/assets/closure/goog/dom/tagname.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14235
+ Served asset /closure/goog/dom/tagname.js - 304 Not Modified (0ms)
14236
+
14237
+
14238
+ Started GET "/assets/closure/goog/dom/classes.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14239
+ Served asset /closure/goog/dom/classes.js - 304 Not Modified (0ms)
14240
+
14241
+
14242
+ Started GET "/assets/closure/goog/math/coordinate.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14243
+ Served asset /closure/goog/math/coordinate.js - 304 Not Modified (0ms)
14244
+
14245
+
14246
+ Started GET "/assets/closure/goog/math/size.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14247
+ Served asset /closure/goog/math/size.js - 304 Not Modified (0ms)
14248
+
14249
+
14250
+ Started GET "/assets/closure/goog/object/object.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14251
+ Served asset /closure/goog/object/object.js - 304 Not Modified (0ms)
14252
+
14253
+
14254
+ Started GET "/assets/closure/goog/structs/inversionmap.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14255
+ Served asset /closure/goog/structs/inversionmap.js - 304 Not Modified (0ms)
14256
+
14257
+
14258
+ Started GET "/assets/closure/goog/dom/dom.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14259
+ Served asset /closure/goog/dom/dom.js - 304 Not Modified (0ms)
14260
+
14261
+
14262
+ Started GET "/assets/closure/goog/i18n/graphemebreak.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14263
+ Served asset /closure/goog/i18n/graphemebreak.js - 304 Not Modified (0ms)
14264
+
14265
+
14266
+ Started GET "/assets/closure/goog/format/format.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14267
+ Served asset /closure/goog/format/format.js - 304 Not Modified (1ms)
14268
+
14269
+
14270
+ Started GET "/assets/closure/goog/i18n/bidi.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14271
+ Served asset /closure/goog/i18n/bidi.js - 304 Not Modified (2ms)
14272
+
14273
+
14274
+ Started GET "/assets/closure/goog/soy/soy.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14275
+ Served asset /closure/goog/soy/soy.js - 304 Not Modified (0ms)
14276
+
14277
+
14278
+ Started GET "/assets/closure/goog/i18n/bidiformatter.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14279
+ Served asset /closure/goog/i18n/bidiformatter.js - 304 Not Modified (0ms)
14280
+
14281
+
14282
+ Started GET "/assets/closure/goog/string/stringbuffer.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14283
+ Served asset /closure/goog/string/stringbuffer.js - 304 Not Modified (0ms)
14284
+
14285
+
14286
+ Started GET "/assets/closure/goog/useragent/jscript.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14287
+ Served asset /closure/goog/useragent/jscript.js - 304 Not Modified (0ms)
14288
+
14289
+
14290
+ Started GET "/assets/soyutils_usegoog.js" for 127.0.0.1 at 2012-01-02 02:12:20 +0000
14291
+ Served asset /soyutils_usegoog.js - 304 Not Modified (0ms)
14292
+
14293
+
14294
+ Started GET "/" for 127.0.0.1 at 2012-01-02 02:13:39 +0000
14295
+ Processing by ApplicationController#index as HTML
14296
+ Rendered application/index.html.erb within layouts/application (0.0ms)
14297
+ Compiled my-closure/simple.js (1127ms) (pid 65934)
14298
+ Compiled my-closure/start.js (0ms) (pid 65934)
14299
+ Executed closure depswriter.py on root paths: /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/my-closure, /Volumes/Development/dev-web/yellow-brick-road/vendor/closure-soyutils-usegoog
14300
+ Compiled application.js (141ms) (pid 65934)
14301
+ Completed 200 OK in 1308ms (Views: 1307.6ms)
14302
+
14303
+
14304
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14305
+ Served asset /application.css - 304 Not Modified (0ms)
14306
+
14307
+
14308
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14309
+ Served asset /jquery.js - 304 Not Modified (2ms)
14310
+
14311
+
14312
+ Started GET "/assets/closure/goog/base.js?body=1" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14313
+ Served asset /closure/goog/base.js - 304 Not Modified (7ms)
14314
+
14315
+
14316
+ Started GET "/assets/closure-deps.js?body=1" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14317
+ Served asset /closure-deps.js - 304 Not Modified (0ms)
14318
+
14319
+
14320
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14321
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
14322
+
14323
+
14324
+ Started GET "/assets/my-closure/start.js?body=1" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14325
+ Served asset /my-closure/start.js - 200 OK (4ms)
14326
+
14327
+
14328
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14329
+ Served asset /application.js - 200 OK (2ms)
14330
+
14331
+
14332
+ Started GET "/assets/my-closure/simple.js?body=1" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14333
+ Served asset /my-closure/simple.js - 304 Not Modified (3ms)
14334
+
14335
+
14336
+ Started GET "/assets/closure/goog/deps.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14337
+ Served asset /closure/goog/deps.js - 304 Not Modified (1ms)
14338
+
14339
+
14340
+ Started GET "/assets/closure/goog/debug/error.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14341
+ Served asset /closure/goog/debug/error.js - 304 Not Modified (0ms)
14342
+
14343
+
14344
+ Started GET "/assets/closure/goog/string/string.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14345
+ Served asset /closure/goog/string/string.js - 304 Not Modified (0ms)
14346
+
14347
+
14348
+ Started GET "/assets/closure/goog/asserts/asserts.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14349
+ Served asset /closure/goog/asserts/asserts.js - 304 Not Modified (3ms)
14350
+
14351
+
14352
+ Started GET "/assets/closure/goog/array/array.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14353
+ Served asset /closure/goog/array/array.js - 304 Not Modified (0ms)
14354
+
14355
+
14356
+ Started GET "/assets/closure/goog/useragent/useragent.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14357
+ Served asset /closure/goog/useragent/useragent.js - 304 Not Modified (0ms)
14358
+
14359
+
14360
+ Started GET "/assets/closure/goog/dom/classes.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14361
+ Served asset /closure/goog/dom/classes.js - 304 Not Modified (0ms)
14362
+
14363
+
14364
+ Started GET "/assets/closure/goog/math/size.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14365
+ Served asset /closure/goog/math/size.js - 304 Not Modified (0ms)
14366
+
14367
+
14368
+ Started GET "/assets/closure/goog/dom/browserfeature.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14369
+ Served asset /closure/goog/dom/browserfeature.js - 304 Not Modified (0ms)
14370
+
14371
+
14372
+ Started GET "/assets/closure/goog/math/coordinate.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14373
+ Served asset /closure/goog/math/coordinate.js - 304 Not Modified (0ms)
14374
+
14375
+
14376
+ Started GET "/assets/closure/goog/dom/tagname.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14377
+ Served asset /closure/goog/dom/tagname.js - 304 Not Modified (0ms)
14378
+
14379
+
14380
+ Started GET "/assets/closure/goog/object/object.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14381
+ Served asset /closure/goog/object/object.js - 304 Not Modified (0ms)
14382
+
14383
+
14384
+ Started GET "/assets/closure/goog/i18n/graphemebreak.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14385
+ Served asset /closure/goog/i18n/graphemebreak.js - 304 Not Modified (0ms)
14386
+
14387
+
14388
+ Started GET "/assets/closure/goog/structs/inversionmap.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14389
+ Served asset /closure/goog/structs/inversionmap.js - 304 Not Modified (0ms)
14390
+
14391
+
14392
+ Started GET "/assets/closure/goog/format/format.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14393
+ Served asset /closure/goog/format/format.js - 304 Not Modified (0ms)
14394
+
14395
+
14396
+ Started GET "/assets/closure/goog/dom/dom.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14397
+ Served asset /closure/goog/dom/dom.js - 304 Not Modified (0ms)
14398
+
14399
+
14400
+ Started GET "/assets/closure/goog/i18n/bidi.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14401
+ Served asset /closure/goog/i18n/bidi.js - 304 Not Modified (0ms)
14402
+
14403
+
14404
+ Started GET "/assets/closure/goog/i18n/bidiformatter.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14405
+ Served asset /closure/goog/i18n/bidiformatter.js - 304 Not Modified (0ms)
14406
+
14407
+
14408
+ Started GET "/assets/closure/goog/soy/soy.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14409
+ Served asset /closure/goog/soy/soy.js - 304 Not Modified (0ms)
14410
+
14411
+
14412
+ Started GET "/assets/closure/goog/useragent/jscript.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14413
+ Served asset /closure/goog/useragent/jscript.js - 304 Not Modified (0ms)
14414
+
14415
+
14416
+ Started GET "/assets/closure/goog/string/stringbuffer.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14417
+ Served asset /closure/goog/string/stringbuffer.js - 304 Not Modified (0ms)
14418
+
14419
+
14420
+ Started GET "/assets/soyutils_usegoog.js" for 127.0.0.1 at 2012-01-02 02:13:41 +0000
14421
+ Served asset /soyutils_usegoog.js - 304 Not Modified (0ms)
14422
+
14423
+
14424
+ Started GET "/" for 127.0.0.1 at 2012-01-02 02:14:31 +0000
14425
+ Processing by ApplicationController#index as HTML
14426
+ Rendered application/index.html.erb within layouts/application (2.4ms)
14427
+ Compiled my-closure/simple.js (1122ms) (pid 65957)
14428
+ Executed closure depswriter.py on root paths: /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/my-closure, /Volumes/Development/dev-web/yellow-brick-road/vendor/closure-soyutils-usegoog
14429
+ Compiled application.js (141ms) (pid 65957)
14430
+ Completed 200 OK in 1340ms (Views: 1339.2ms)
14431
+
14432
+
14433
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14434
+ Served asset /application.css - 304 Not Modified (0ms)
14435
+
14436
+
14437
+ Started GET "/assets/closure/goog/base.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14438
+ Served asset /closure/goog/base.js - 304 Not Modified (19ms)
14439
+
14440
+
14441
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14442
+ Served asset /jquery.js - 304 Not Modified (8ms)
14443
+
14444
+
14445
+ Started GET "/assets/my-closure/simple.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14446
+ Served asset /my-closure/simple.js - 304 Not Modified (3ms)
14447
+
14448
+
14449
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14450
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
14451
+
14452
+
14453
+ Started GET "/assets/closure-deps.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14454
+ Served asset /closure-deps.js - 304 Not Modified (3ms)
14455
+
14456
+
14457
+ Started GET "/assets/my-closure/start.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14458
+ Served asset /my-closure/start.js - 304 Not Modified (3ms)
14459
+
14460
+
14461
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14462
+ Served asset /application.js - 304 Not Modified (2ms)
14463
+
14464
+
14465
+ Started GET "/assets/closure/goog/deps.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14466
+ Served asset /closure/goog/deps.js - 304 Not Modified (48ms)
14467
+
14468
+
14469
+ Started GET "/assets/closure/goog/debug/error.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14470
+ Served asset /closure/goog/debug/error.js - 304 Not Modified (9ms)
14471
+
14472
+
14473
+ Started GET "/assets/closure/goog/asserts/asserts.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14474
+ Served asset /closure/goog/asserts/asserts.js - 304 Not Modified (5ms)
14475
+
14476
+
14477
+ Started GET "/assets/closure/goog/array/array.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14478
+ Served asset /closure/goog/array/array.js - 304 Not Modified (5ms)
14479
+
14480
+
14481
+ Started GET "/assets/closure/goog/string/string.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14482
+ Served asset /closure/goog/string/string.js - 304 Not Modified (3ms)
14483
+
14484
+
14485
+ Started GET "/assets/closure/goog/useragent/useragent.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14486
+ Served asset /closure/goog/useragent/useragent.js - 304 Not Modified (2ms)
14487
+
14488
+
14489
+ Started GET "/assets/closure/goog/dom/browserfeature.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14490
+ Served asset /closure/goog/dom/browserfeature.js - 304 Not Modified (6ms)
14491
+
14492
+
14493
+ Started GET "/assets/closure/goog/dom/tagname.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14494
+ Served asset /closure/goog/dom/tagname.js - 304 Not Modified (3ms)
14495
+
14496
+
14497
+ Started GET "/assets/closure/goog/math/coordinate.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14498
+ Served asset /closure/goog/math/coordinate.js - 304 Not Modified (3ms)
14499
+
14500
+
14501
+ Started GET "/assets/closure/goog/structs/inversionmap.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14502
+ Served asset /closure/goog/structs/inversionmap.js - 304 Not Modified (2ms)
14503
+
14504
+
14505
+ Started GET "/assets/closure/goog/dom/classes.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14506
+ Served asset /closure/goog/dom/classes.js - 304 Not Modified (5ms)
14507
+
14508
+
14509
+ Started GET "/assets/closure/goog/object/object.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14510
+ Served asset /closure/goog/object/object.js - 304 Not Modified (2ms)
14511
+
14512
+
14513
+ Started GET "/assets/closure/goog/math/size.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14514
+ Served asset /closure/goog/math/size.js - 304 Not Modified (4ms)
14515
+
14516
+
14517
+ Started GET "/assets/closure/goog/dom/dom.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14518
+ Served asset /closure/goog/dom/dom.js - 304 Not Modified (7ms)
14519
+
14520
+
14521
+ Started GET "/assets/closure/goog/i18n/graphemebreak.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14522
+ Served asset /closure/goog/i18n/graphemebreak.js - 304 Not Modified (2ms)
14523
+
14524
+
14525
+ Started GET "/assets/closure/goog/format/format.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14526
+ Served asset /closure/goog/format/format.js - 304 Not Modified (3ms)
14527
+
14528
+
14529
+ Started GET "/assets/closure/goog/i18n/bidi.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14530
+ Served asset /closure/goog/i18n/bidi.js - 304 Not Modified (3ms)
14531
+
14532
+
14533
+ Started GET "/assets/closure/goog/i18n/bidiformatter.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14534
+ Served asset /closure/goog/i18n/bidiformatter.js - 304 Not Modified (6ms)
14535
+
14536
+
14537
+ Started GET "/assets/closure/goog/soy/soy.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14538
+ Served asset /closure/goog/soy/soy.js - 304 Not Modified (3ms)
14539
+
14540
+
14541
+ Started GET "/assets/closure/goog/useragent/jscript.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14542
+ Served asset /closure/goog/useragent/jscript.js - 304 Not Modified (3ms)
14543
+
14544
+
14545
+ Started GET "/assets/closure/goog/string/stringbuffer.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14546
+ Served asset /closure/goog/string/stringbuffer.js - 304 Not Modified (2ms)
14547
+
14548
+
14549
+ Started GET "/assets/soyutils_usegoog.js" for 127.0.0.1 at 2012-01-02 02:14:33 +0000
14550
+ Served asset /soyutils_usegoog.js - 304 Not Modified (3ms)
14551
+
14552
+
14553
+ Started GET "/" for 127.0.0.1 at 2012-01-02 02:14:37 +0000
14554
+ Processing by ApplicationController#index as HTML
14555
+ Rendered application/index.html.erb within layouts/application (0.1ms)
14556
+ Compiled my-closure/simple.js (1102ms) (pid 65957)
14557
+ Executed closure depswriter.py on root paths: /Volumes/Development/dev-web/yellow-brick-road/test/dummy/app/assets/javascripts/my-closure, /Volumes/Development/dev-web/yellow-brick-road/vendor/closure-soyutils-usegoog
14558
+ Compiled application.js (136ms) (pid 65957)
14559
+ Completed 200 OK in 1273ms (Views: 1272.7ms)
14560
+
14561
+
14562
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 02:14:38 +0000
14563
+ Served asset /application.css - 304 Not Modified (0ms)
14564
+
14565
+
14566
+ Started GET "/assets/closure-deps.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:38 +0000
14567
+ Served asset /closure-deps.js - 304 Not Modified (3ms)
14568
+
14569
+
14570
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:38 +0000
14571
+ Served asset /jquery.js - 304 Not Modified (1ms)
14572
+
14573
+
14574
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:38 +0000
14575
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
14576
+
14577
+
14578
+ Started GET "/assets/closure/goog/base.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:38 +0000
14579
+ Served asset /closure/goog/base.js - 304 Not Modified (0ms)
14580
+
14581
+
14582
+ Started GET "/assets/my-closure/start.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:38 +0000
14583
+ Served asset /my-closure/start.js - 304 Not Modified (0ms)
14584
+
14585
+
14586
+ Started GET "/assets/my-closure/simple.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:38 +0000
14587
+ Served asset /my-closure/simple.js - 304 Not Modified (3ms)
14588
+
14589
+
14590
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 02:14:38 +0000
14591
+ Served asset /application.js - 304 Not Modified (1ms)
14592
+
14593
+
14594
+ Started GET "/assets/closure/goog/deps.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14595
+ Served asset /closure/goog/deps.js - 304 Not Modified (1ms)
14596
+
14597
+
14598
+ Started GET "/assets/closure/goog/string/string.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14599
+ Served asset /closure/goog/string/string.js - 304 Not Modified (0ms)
14600
+
14601
+
14602
+ Started GET "/assets/closure/goog/array/array.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14603
+ Served asset /closure/goog/array/array.js - 304 Not Modified (1ms)
14604
+
14605
+
14606
+ Started GET "/assets/closure/goog/debug/error.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14607
+ Served asset /closure/goog/debug/error.js - 304 Not Modified (0ms)
14608
+
14609
+
14610
+ Started GET "/assets/closure/goog/useragent/useragent.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14611
+ Served asset /closure/goog/useragent/useragent.js - 304 Not Modified (0ms)
14612
+
14613
+
14614
+ Started GET "/assets/closure/goog/dom/tagname.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14615
+ Served asset /closure/goog/dom/tagname.js - 304 Not Modified (3ms)
14616
+
14617
+
14618
+ Started GET "/assets/closure/goog/dom/browserfeature.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14619
+ Served asset /closure/goog/dom/browserfeature.js - 304 Not Modified (3ms)
14620
+
14621
+
14622
+ Started GET "/assets/closure/goog/asserts/asserts.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14623
+ Served asset /closure/goog/asserts/asserts.js - 304 Not Modified (0ms)
14624
+
14625
+
14626
+ Started GET "/assets/closure/goog/dom/classes.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14627
+ Served asset /closure/goog/dom/classes.js - 304 Not Modified (0ms)
14628
+
14629
+
14630
+ Started GET "/assets/closure/goog/math/coordinate.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14631
+ Served asset /closure/goog/math/coordinate.js - 304 Not Modified (0ms)
14632
+
14633
+
14634
+ Started GET "/assets/closure/goog/math/size.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14635
+ Served asset /closure/goog/math/size.js - 304 Not Modified (4ms)
14636
+
14637
+
14638
+ Started GET "/assets/closure/goog/object/object.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14639
+ Served asset /closure/goog/object/object.js - 304 Not Modified (0ms)
14640
+
14641
+
14642
+ Started GET "/assets/closure/goog/structs/inversionmap.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14643
+ Served asset /closure/goog/structs/inversionmap.js - 304 Not Modified (0ms)
14644
+
14645
+
14646
+ Started GET "/assets/closure/goog/dom/dom.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14647
+ Served asset /closure/goog/dom/dom.js - 304 Not Modified (0ms)
14648
+
14649
+
14650
+ Started GET "/assets/closure/goog/i18n/graphemebreak.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14651
+ Served asset /closure/goog/i18n/graphemebreak.js - 304 Not Modified (1ms)
14652
+
14653
+
14654
+ Started GET "/assets/closure/goog/format/format.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14655
+ Served asset /closure/goog/format/format.js - 304 Not Modified (0ms)
14656
+
14657
+
14658
+ Started GET "/assets/closure/goog/i18n/bidi.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14659
+ Served asset /closure/goog/i18n/bidi.js - 304 Not Modified (1ms)
14660
+
14661
+
14662
+ Started GET "/assets/closure/goog/useragent/jscript.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14663
+ Served asset /closure/goog/useragent/jscript.js - 304 Not Modified (0ms)
14664
+
14665
+
14666
+ Started GET "/assets/closure/goog/soy/soy.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14667
+ Served asset /closure/goog/soy/soy.js - 304 Not Modified (0ms)
14668
+
14669
+
14670
+ Started GET "/assets/closure/goog/i18n/bidiformatter.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14671
+ Served asset /closure/goog/i18n/bidiformatter.js - 304 Not Modified (0ms)
14672
+
14673
+
14674
+ Started GET "/assets/closure/goog/string/stringbuffer.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14675
+ Served asset /closure/goog/string/stringbuffer.js - 304 Not Modified (0ms)
14676
+
14677
+
14678
+ Started GET "/assets/soyutils_usegoog.js" for 127.0.0.1 at 2012-01-02 02:14:39 +0000
14679
+ Served asset /soyutils_usegoog.js - 304 Not Modified (0ms)
@@ -1,4 +1,4 @@
1
- o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1325461605.093482: @value{ I" length:EFi�I" digest;
1
+ o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1325470478.852022: @value{ I" length:EFi�I" digest;
2
2
  F"%1bcaa34c750b20c937f1dbbc2aa48894I" source;
3
3
  FI"�// This file was automatically generated from simple.js.soy.
4
4
  // Please don't edit this file by hand.
@@ -22,4 +22,4 @@ myproject.templates.hello = function(opt_data, opt_sb) {
22
22
  };
23
23
  ;
24
24
  FI"
25
- F"%5561fd75df75b3c957fcb45472061fdf
25
+ F"%85421255458b80cf4bdef75f25909c78
@@ -1,6 +1,6 @@
1
- o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1325461605.095962: @value{ I" length:EFi-I" digest;
2
- F"%48752de6df41f88201d301a25fdc8db5I" source;
3
- FI"-goog.provide('myproject.start');
1
+ o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1325470421.2475488: @value{ I" length:EFi+I" digest;
2
+ F"%5fd8ea10b2df41ae53be7cd85b39d635I" source;
3
+ FI"+goog.provide('myproject.start');
4
4
 
5
5
  goog.require('goog.dom');
6
6
 
@@ -25,7 +25,6 @@ myproject.start = function() {
25
25
 
26
26
  // Ensures the symbol will be visible after compiler renaming.
27
27
  goog.exportSymbol('myproject.start', myproject.start);
28
-
29
28
  ;
30
29
  FI"
31
- F"%f784ad8da63be9b0772d4235bd79536b
30
+ F"%7abd6a0b260730120cfb16c4918f85d6
@@ -1,6 +1,6 @@
1
- o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1325461605.116566: @value{ I" length:EFi��I" digest;
2
- F"%46a7361c4fb449f545758bfc050b18d5I" source;
3
- FI"��/*!
1
+ o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1325470478.85595: @value{ I" length:EFi��I" digest;
2
+ F"%cf103d28041c036aae9f3e03d09ad0deI" source;
3
+ FI"��/*!
4
4
  * jQuery JavaScript Library v1.7.1
5
5
  * http://jquery.com/
6
6
  *
@@ -11214,7 +11214,6 @@ myproject.start = function() {
11214
11214
 
11215
11215
  // Ensures the symbol will be visible after compiler renaming.
11216
11216
  goog.exportSymbol('myproject.start', myproject.start);
11217
-
11218
11217
  // This is a manifest file that'll be compiled into including all the files listed below.
11219
11218
  // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
11220
11219
  // be included in the compiled file accessible from http://example.com/assets/application.js
@@ -11225,4 +11224,4 @@ goog.exportSymbol('myproject.start', myproject.start);
11225
11224
  ;
11226
11225
  ;
11227
11226
  FI"
11228
- F"%e229a1fb834515bb36ce335116f481f0
11227
+ F"%37b9053b3df26bd476803b994dc0a67a
@@ -1 +1 @@
1
- 64315
1
+ 65957
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yellow-brick-road
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-01-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &2156873760 !ruby/object:Gem::Requirement
16
+ requirement: &2152587020 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,21 +21,10 @@ dependencies:
21
21
  version: 3.1.3
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *2156873760
25
- - !ruby/object:Gem::Dependency
26
- name: closure
27
- requirement: &2156872820 !ruby/object:Gem::Requirement
28
- none: false
29
- requirements:
30
- - - ~>
31
- - !ruby/object:Gem::Version
32
- version: 1.4.3
33
- type: :runtime
34
- prerelease: false
35
- version_requirements: *2156872820
24
+ version_requirements: *2152587020
36
25
  - !ruby/object:Gem::Dependency
37
26
  name: sqlite3
38
- requirement: &2156871760 !ruby/object:Gem::Requirement
27
+ requirement: &2152621040 !ruby/object:Gem::Requirement
39
28
  none: false
40
29
  requirements:
41
30
  - - ! '>='
@@ -43,7 +32,7 @@ dependencies:
43
32
  version: '0'
44
33
  type: :development
45
34
  prerelease: false
46
- version_requirements: *2156871760
35
+ version_requirements: *2152621040
47
36
  description: A set of tools for integrating google closure library into rails.
48
37
  email:
49
38
  - ''
@@ -297,7 +286,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
297
286
  version: '0'
298
287
  segments:
299
288
  - 0
300
- hash: -1071237921650199637
289
+ hash: 2346524343732996659
301
290
  required_rubygems_version: !ruby/object:Gem::Requirement
302
291
  none: false
303
292
  requirements:
@@ -306,7 +295,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
306
295
  version: '0'
307
296
  segments:
308
297
  - 0
309
- hash: -1071237921650199637
298
+ hash: 2346524343732996659
310
299
  requirements: []
311
300
  rubyforge_project:
312
301
  rubygems_version: 1.8.10