This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 78c78,79 | |
| < FileUtils.cp(file, dir) | |
| --- | |
| > FileUtils.mkdir_p(File.join(dir, file[:dir])) if file[:dir] | |
| > FileUtils.cp(file[:path], File.join(dir, (file[:dir] || ''))) | |
| 98c99,101 | |
| < :manifest => @files.map{|i| File.basename(i)}, | |
| --- | |
| > :manifest => @files.map{|i| | |
| > i[:dir] ? File.join(i[:dir], File.basename(i[:path])) : File.basename(i[:path]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/railties/guides/assets/stylesheets/main.css b/railties/guides/assets/stylesheets/main.css | |
| index bab0b7a..5889d24 100644 | |
| --- a/railties/guides/assets/stylesheets/main.css | |
| +++ b/railties/guides/assets/stylesheets/main.css | |
| @@ -72,20 +72,20 @@ table th { | |
| --------------------------------------- */ | |
| body { | |
| - text-align: center; | |
| - font-family: Helvetica, Arial, sans-serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Person.order_by([[:_id, Mongo::DESCENDING]]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/te | |
| index 34499fa..aed493a 100644 | |
| --- a/actionpack/lib/action_controller/test_case.rb | |
| +++ b/actionpack/lib/action_controller/test_case.rb | |
| @@ -18,6 +18,7 @@ module ActionController | |
| ActiveSupport::Notifications.subscribe("render_template.action_view") do |name, start, fi | |
| path = payload[:layout] | |
| + @layouts ||= Hash.new(0) | |
| @layouts[path] += 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Singleton { | |
| public static var getInstance:Function = function():Singleton { | |
| var instance:Singleton = new Singleton(); | |
| getInstance = function():Singleton { | |
| return instance; | |
| }; | |
| return getInstance(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'rubygems' | |
| require 'sinatra' | |
| use Rack::Static, :urls => ["/images"], :root => "src/public" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| as3-commons repository | |
| @see http://code.google.com/p/as3-commons/source/browse/trunk/pom.xml | |
| --> | |
| <repository> | |
| <id>yoolab.org-releases</id> | |
| <url>http://dev.yoolab.org/maven/content/repositories/releases/</url> | |
| <releases> | |
| <enabled>true</enabled> | |
| </releases> |
NewerOlder