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
When /^I fill the captcha incorrectly$/ do | |
captcha_evaluates_to false | |
end | |
When /^I fill the captcha correctly$/ do | |
captcha_evaluates_to true | |
end | |
# if you move this method correctly to features/support/recaptcha_helper.rb and include it in World => you feature will fail! | |
def captcha_evaluates_to(result) |
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
# Delete unnecessary files | |
run 'rm README' | |
run 'rm public/index.html' | |
run 'rm public/favicon.ico' | |
run 'rm public/robots.txt' | |
run 'cp config/database.yml config/database.yml.example' | |
file '.gitignore', <<-END | |
log |
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
# this is an AR model class | |
named_scope :privates, :conditions => { :public => false } | |
named_scope :named_like, lambda { |name| { :conditions => "name LIKE '#{name}%'" }} | |
# we want to concatenate named_scopes at later points in code | |
def self.by_privacy_and_name(privates = false, name = nil) | |
# we want a named_scope to concatenate other namescopes afterwards | |
gs = if privates | |
self.privates # with named_scopes everything runs fine | |
else |
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
# now there is no metaprogramming involve, but finger saving it is indeed :-) | |
describe 'active ones' do | |
it 'should require required attributes' do | |
REQUIRED_ATTRS = [ :email, :name, :birthday, :phone, :address, :city, | |
:province, :postal_code, | |
:country, :nationality, | |
:employment_status ] unless defined?(REQUIRED_ATTRS) | |
Candidate.new.attribute_names.each do |attr| |
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
require 'capitate' | |
require 'capitate/recipes' | |
set :project_root, File.dirname(__FILE__) | |
load 'deploy' if respond_to?(:namespace) # cap2 differentiator | |
Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) } | |
set :application, "misustento" | |
set :domain, "misustento.com" | |
set :domain_aliases, ["misustento.es"] |
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
<?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gml='http://www.opengis.net/gml' xmlns:georss='http://www.georss.org/georss' xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/"A04BQH47eCp7I2A9WxJTFEQ."'><id>http://www.google.com/calendar/feeds/calendar%40minuevavida.es/private/full</id><updated>2009-04-23T15:19:11.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>[email protected]</title><subtitle>Calendario de Reuniones de La Iglesia Evangelica Nueva Vida</subtitle><link rel='alternate' type='text/html' href='http://www.google.com/calendar/[email protected]'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.google.com/calendar/feeds/calendar%40minuevavida.es/private/full' |
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
insoshi searches_controller_spec.rb fail, are you seing this too? | |
$ git log -n1 | |
commit 8764d0977c15fe360e34b82e54ca76639c73472f | |
Author: Michael Hartl <[email protected]> | |
Date: Thu Apr 9 12:06:26 2009 -0700 | |
Switched to the MIT License | |
$ rake ultrasphinx:configure RAILS_ENV=test |
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
h1. We are spec-ing that celerity (HtmlUnit) does not break after a call to GMap API | |
Does specs pass for you??? any help would be appreciated :-) | |
on files you find the web app and the celerity specs. | |
h2. The rack app. | |
celerack.rb is a rack that returns a simple page with a form and 3 buttons: | |
# 1. submit one |
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/env jruby | |
# fast script for running javascript unit tests | |
# requires a bit of setup, as it uses jruby | |
# see http://celerity.rubyforge.org/ | |
require "rubygems" | |
require "celerity" | |
module Javascript |
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
# celerity is not getting the ajax response back | |
# this is a stack trace from http://github.com/joahking/cukes/tree/master/ where we are | |
# running cucumber features for webrat together with celerity | |
# please refer to project to see details | |
# we ran this: | |
$ cucumber -p celerity | |
(rdb:1) c | |
When I follow "ajax link" # features/step_definitions/culerity_steps.rb:40 |