Skip to content
This repository has been archived by the owner on Jan 24, 2019. It is now read-only.

Commit

Permalink
Changed to Ruby 2.0.0 (3 files) + rake(green)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasnow committed Jul 1, 2013
1 parent 5a8aa86 commit 9f5b5cc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions Gemfile
@@ -1,5 +1,7 @@
source 'https://rubygems.org'

ruby '2.0.0'

gem 'rails', '3.2.13'
gem 'pg'
gem 'slim'
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Expand Up @@ -28,7 +28,7 @@ GEM
activesupport (3.2.13)
i18n (= 0.6.1)
multi_json (~> 1.0)
addressable (2.3.4)
addressable (2.3.5)
arel (3.0.2)
builder (3.0.4)
capybara (2.1.0)
Expand Down
10 changes: 5 additions & 5 deletions features/step_definitions/proposals_steps.rb
@@ -1,4 +1,4 @@
When /^I submit a talk named "([^"]*)" with length of (\d+) minutes$/ do |title, duration|
When /^I submit a talk named "([^\"]*)" with length of (\d+) minutes$/ do |title, duration|
visit new_talk_url
fill_in "Title", :with => title
fill_in "Duration (minutes)", :with => duration
Expand All @@ -12,7 +12,7 @@
page.body.should match /submitted for review/
end

Given /^I'm logged in as an admin$/ do
Given /^I\'m logged in as an admin$/ do
user = FactoryGirl.create(:user)
User.any_instance.stub(:atlrug_organizer? => true) and user.stub(:atlrug_team_id => 1)
OmniAuth.config.add_mock(:github, { :uid => user.uid })
Expand All @@ -24,9 +24,9 @@
end

When /^I go approve a talk$/ do
pending
visit "/talks/approve"
click_link "approve"
pending
#visit "/talks/approve"
#click_link "approve"
end

Then /^I should see it scheduled for the next meetup$/ do
Expand Down

0 comments on commit 9f5b5cc

Please sign in to comment.