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
Proposal title: AWS Deployment with Rubber | |
============== | |
Description (400 characters - 65 words): | |
======================================= | |
Amazon Web Services (AWS) is one of the easiest ways to get going with cloud computing. Rubber is a Capistrano plugin that simplifies provisioning and deploying Ruby Web apps to EC2, EBS, and S3. In this | |
talk you'll learn how to build out both common and complex application stacks rapidly on AWS. | |
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
Proposal title: AWS Deployment with Rubber | |
============== | |
Description (400 characters - 65 words): | |
======================================= | |
Cloud computing has made computing at scale available to everyone. Cloud computing is not without its pitfalls, however. Overcoming these relies on following the deployment best practices discovered through years of trial and error. The Rubber framework aims to codify some of these best practices and help you build and manage your real world cloud deployment in a practical manner. | |
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
Testsuite: org.openqa.selenium.AtomsTestSuite | |
Tests run: 0, Failures: 1, Errors: 0, Time elapsed: 94.712 sec | |
------------- Standard Error ----------------- | |
org.openqa.selenium.WebDriverException: Failed to connect to binary FirefoxBinary(/Applications/Firefox.app/Contents/MacOS/firefox-bin) on port 7056; process output follows: | |
ÿ | |
System info: os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.6.4', java.version: '1.6.0_20' | |
Driver info: driver.version: firefox | |
at org.openqa.selenium.firefox.internal.NewProfileExtensionConnection.start(NewProfileExtensionConnection.java:99) | |
at org.openqa.selenium.firefox.FirefoxDriver.startClient(FirefoxDriver.java:163) | |
at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:72) |
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
Error: FirefoxDriver is not defined | |
Source File: file:///private/var/folders/0J/0JtNd2qIHFGevD9WllThIU+++TI/-Tmp-/webdriver8641006165147142003profile/extensions/[email protected]/components/wrappedElement.js | |
Line: 20 | |
Error: Warning: unrecognized command line flag -verbose | |
Source File: file:///Applications/Firefox.app/Contents/MacOS/components/nsBrowserContentHandler.js |
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
nirvdrum@ubuntu:~$ rvm --trace package install iconv | |
--trace package install iconv | |
rvm 1.0.1 by Wayne E. Seguin ([email protected]) [http://rvm.beginrescueend.com/] | |
+ [[ -z '' ]] | |
+ [[ ! -z ruby-1.9.2-p0 ]] | |
+ rvm_action=use | |
+ [[ ! -z '' ]] | |
+ [[ ! -z '' ]] |
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
gateway: | |
type: local | |
recover_after_nodes: 1 | |
recover_after_time: 5m | |
expected_nodes: 1 |
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
<%- | |
@path = '/etc/init.d/xvfb' | |
@perms = 0755 | |
@post = 'update-rc.d xvfb defaults && /etc/init.d/xvfb restart' | |
args = rubber_env.xvfb_display_number.to_s | |
rubber_env.xvfb_screen_count.to_i.times do |i| | |
args << " -screen #{i} 1024x768x24" | |
end | |
args << " -ac" |
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
compute examples (compute) | |
/Users/nirvdrum/dev/workspaces/fog/examples/compute_tests.rb | |
AWS (aws) | |
compute examples (compute) | |
- succeeds | |
/Users/nirvdrum/dev/workspaces/fog/examples/compute_tests.rb | |
undefined method `match' for nil:NilClass (NoMethodError) | |
/Users/nirvdrum/.rvm/gems/ruby-1.9.2-p290/gems/net-ssh-2.2.1/lib/net/ssh/key_factory.rb:48:in `load_data_private_key' | |
/Users/nirvdrum/.rvm/gems/ruby-1.9.2-p290/gems/net-ssh-2.2.1/lib/net/ssh/authentication/key_manager.rb:218:in `block in load_identities' |
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/ChangeLog b/ChangeLog | |
index c4ea779..0a6bf73 100644 | |
--- a/ChangeLog | |
+++ b/ChangeLog | |
@@ -1,3 +1,188 @@ | |
+Tue Jan 17 12:32:46 2012 Nobuyoshi Nakada <[email protected]> | |
+ | |
+ * gc.c (aligned_malloc, aligned_free): covered missing defined | |
+ operators and fixes for cygwin. | |
+ |
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
Gem::RemoteFetcher::FetchError: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://bb-m.rubygems.org/gems/nokogiri-1.5.2.gem) | |
An error occured while installing nokogiri (1.5.2), and Bundler cannot continue. | |
Make sure that `gem install nokogiri -v '1.5.2'` succeeds before bundling. |