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

Commit

Permalink
updating deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Oshuma committed May 19, 2011
1 parent 2cd79de commit cbb40d2
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.rvmrc
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
source :rubygems

gem 'json'

group :test do
gem 'rspec', :require => 'spec'
gem 'rspec', '>= 2.6.0'
end
20 changes: 20 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
GEM
remote: http://rubygems.org/
specs:
diff-lcs (1.1.2)
json (1.5.1)
rspec (2.6.0)
rspec-core (~> 2.6.0)
rspec-expectations (~> 2.6.0)
rspec-mocks (~> 2.6.0)
rspec-core (2.6.0)
rspec-expectations (2.6.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.6.0)

PLATFORMS
ruby

DEPENDENCIES
json
rspec (>= 2.6.0)
8 changes: 4 additions & 4 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
require 'spec/rake/spectask'
require 'bundler'
require 'rspec/core/rake_task'

task :default => :spec

desc 'Run the specs'
Spec::Rake::SpecTask.new(:spec) do |t|
t.spec_opts = ['--color']
t.spec_files = FileList['spec/**/*_spec.rb']
RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = ['--color']
end

desc 'Start a console loaded with the library'
Expand Down
5 changes: 3 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
require 'spec'
require 'rspec'
require "#{File.dirname(__FILE__)}/../lib/grooveshark"

Spec::Runner.configure do |config|
RSpec.configure do |config|
include Grooveshark
config.mock_with :rspec
end

0 comments on commit cbb40d2

Please sign in to comment.