This file contains 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
lib/merb-core/bootloader.rb | 6 +----- | |
lib/merb-core/config.rb | 7 +++++++ | |
lib/merb-core/core_ext/kernel.rb | 5 +++-- | |
spec/private/core_ext/kernel_spec.rb | 2 +- | |
4 files changed, 12 insertions(+), 8 deletions(-) | |
diff --git a/lib/merb-core/bootloader.rb b/lib/merb-core/bootloader.rb | |
index 5853c1a..585cfd0 100644 | |
--- a/lib/merb-core/bootloader.rb |
This file contains 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
module URI | |
def self.parse_with_options(uri_str, opts = {}) | |
parsed_uri = self.parse(uri_str) | |
class << parsed_uri | |
def options | |
opts | |
end | |
end | |
parsed_uri | |
end |
This file contains 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
#!/usr/bin/ruby | |
require 'rubygems' | |
require 'osx/cocoa' | |
include OSX | |
NSBundle.bundleWithPath("/System/Library/Frameworks/CalendarStore.framework").load | |
ns_import :CalendarStore | |
class NSDate |
This file contains 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
#!/usr/bin/ruby | |
require 'rubygems' | |
require 'osx/cocoa' | |
include OSX | |
NSBundle.bundleWithPath("/System/Library/Frameworks/CalendarStore.framework").load | |
ns_import :CalendarStore | |
class NSDate |
This file contains 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
# See also http://github.com/simonjefford/rack_firebug_logger | |
# for this middleware + tests + a rails plugin | |
class FirebugLogger | |
def initialize(app, options = {}) | |
@app = app | |
@options = options | |
end | |
def call(env) | |
dup._call(env) |
This file contains 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
directory "vendor/rails", :glob => "{*/,}*.gemspec" | |
git "git://github.com/rails/arel.git" | |
git "git://github.com/rails/rack.git" | |
gem "rails", "3.0.pre" | |
git "git://github.com/thoughtbot/paperclip.git" | |
gem "paperclip" |
This file contains 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/test/controller/capture_test.rb b/actionpack/test/controller/capture_test.rb | |
index 06a5af6..d1dbd53 100644 | |
--- a/actionpack/test/controller/capture_test.rb | |
+++ b/actionpack/test/controller/capture_test.rb | |
@@ -61,6 +61,11 @@ class CaptureTest < ActionController::TestCase | |
assert_equal expected_content_for_output, @response.body | |
end | |
+ def test_proper_block_detection | |
+ @todo = "some todo" |
This file contains 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
self.window.rootViewController = self.testDocsController; | |
[[self window] setRootViewController:[self testDocsController]]; |
This file contains 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
info it worked if it ends with ok | |
verbose cli [ 'node', | |
verbose cli '/Users/simon/code/npm/cli.js', | |
verbose cli 'install', | |
verbose cli '-g', | |
verbose cli '-f' ] | |
info using [email protected] | |
info using [email protected] | |
verbose config file /Users/simon/.npmrc | |
verbose config file /usr/local/etc/npmrc |
This file contains 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
Backtrace: | |
0: clojure.lang.Reflector.invokeConstructor(Reflector.java:163) | |
1: currency_puzzle.rates$convert.invoke(rates.clj:46) | |
[No Locals] | |
2: currency_puzzle.core$_main$fn__2204.invoke(core.clj:9) |
OlderNewer