Skip to content

Commit

Permalink
Followup to gem updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
keolo committed Aug 30, 2013
1 parent 9d4d94b commit 509ac3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
10 changes: 3 additions & 7 deletions .rvmrc
@@ -1,14 +1,10 @@
# Create the gemset if it does not exist
#
rvm_gemset_create_on_use_flag=1

# Switch to default ruby version when exiting directory
rvm_project_rvmrc_default=1

# Use rvm with a specific version of ruby and gemset
if [[ `ruby -v` =~ '1.8.7' ]]; then
rvm use ruby-1.8.7
rvm gemset use mixpanel_client_1.8.7
else
rvm use ruby-1.9.2
rvm gemset use mixpanel_client_1.9.2
fi
rvm use ruby-1.9.3-p392
rvm gemset use mixpanel_client_1.9.3-p392
2 changes: 1 addition & 1 deletion spec/mixpanel_client/mixpanel_client_spec.rb
Expand Up @@ -8,7 +8,7 @@

context 'when initializing a new Mixpanel::Client' do
it 'should not raise an exception if a hash is given' do
Mixpanel::Client.new('api_key' => 'test_key', 'api_secret' => 'test_secret').should_not raise_error
Mixpanel::Client.new('api_key' => 'test_key', 'api_secret' => 'test_secret').should_not{raise_error}
end

it 'should set a parallel option as false by default' do
Expand Down

0 comments on commit 509ac3b

Please sign in to comment.