Skip to content

Instantly share code, notes, and snippets.

View jeffersongirao's full-sized avatar
🏠
Working from home

Jefferson Girão jeffersongirao

🏠
Working from home
View GitHub Profile
This example shows how to setup an environment running Rails 3 beta 3 under 1.9.2-head with a 'rails3' gem set.
∴ rvm update --head
# ((Open a new shell)) or do 'rvm reload'
# If you do not already have the ruby interpreter installed, install it:
∴ rvm install 1.9.2-head
# Switch to 1.9.2-head and gemset rails3, create if it doesn't exist.
∴ rvm --create use 1.9.2-head@rails3
#
# bash completion support for core Git.
#
# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
# Distributed under the GNU General Public License, version 2.0.
#
# The contained completion routines provide support for completing:
#
# *) local and remote branch names
jefferson@jefferson-laptop:/dados/projetos/ruby/hoodiny/cyloop_social$ sink
+ git branch
+ grep *
+ awk {print $2}
+ CURRENT=jefferson_fixes
+ git checkout master
Switched to branch 'master'
Your branch is ahead of 'origin/master' by 1 commit.
+ git pull origin master
From git@github.com:hoodinygithub/cyloop_social
def wait_for_ajax(timeout=5000)
condicao = "selenium.browserbot.getCurrentWindow().jQuery.active == 0"
selenium.wait_for_condition(condicao, timeout)
end
Selenium::Client::Driver.new(
:host => "localhost",
:port => 4444,
:browser => "*firefox",
:timeout_in_seconds => 10,
:url => "http://localhost:3000",
:javascript_framework => :jquery
)
<script type="text/javascript">
var condicao = 'selenium.browserbot.getCurrentWindow()' +
implementacao_especifica + '== 0';
</script>
waitForCondition(condicao, 5000)
1)
ActionView::TemplateError in 'RadioController GET index requires top stations'
Missing template shared/_top_station.erb in view path app/views
On line #97 of app/views/radio/index.html.haml
94: %ul
95: = render :partial => 'shared/top_station', :collection => @top_stations
96: = banner_ad("pixel_banner")
/usr/local/lib/ruby/gems/1.8/gems/rspec-rails-1.3.2/lib/spec/rails/extensions/action_view/base.rb:17:in `render_partial'
Webrat.configure do |config|
config.mode = :rails
config.open_error_files = false # Set to true if you want error pages to pop up in the browser
end
Webrat.configure do |config|
config.mode = :selenium
end
Cucumber::Rails::World.use_transactional_fixtures = false
World(Webrat::Selenium::Matchers)
require 'database_cleaner'
DatabaseCleaner.strategy = :truncation
# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
# It is recommended to regenerate this file in the future when you upgrade to a
# newer version of cucumber-rails. Consider adding your own code to a new file
# instead of editing this one. Cucumber will automatically load all features/**/*.rb
# files.
ENV["RAILS_ENV"] ||= "cucumber"
require File.expand_path(File.dirname(__FILE__) + '/../../config/environment')
require 'cucumber/formatter/unicode' # Remove this line if you don't want Cucumber Unicode support