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

Commit

Permalink
Browse files Browse the repository at this point in the history
Clean up Gemfile and bundler setup.
  • Loading branch information
John Firebaugh authored and ragaskar committed Apr 21, 2010
1 parent 435a53f commit 666b968
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
16 changes: 9 additions & 7 deletions Gemfile
@@ -1,13 +1,15 @@
#jasmine-ruby is currently designed for use with bundler 0.9.14
source :gemcutter
#

gem "rake", "0.8.7"
gem "jeweler", "1.4.0"
gem "gemcutter", "0.5.0"

gem "json_pure", "1.2.0", :group => :test
gem "rspec", "1.3.0", :group => :test
gem "rack", "1.0.0", :group => :test
gem "thin", "1.2.4", :group => :test
gem "selenium-rc", "2.2.1", :group => :test
gem "selenium-client", "1.2.18", :group => :test
group :test do
gem "json_pure", "1.2.0"
gem "rspec", "1.3.0"
gem "rack", "1.0.0"
gem "thin", "1.2.4"
gem "selenium-rc", "2.2.1"
gem "selenium-client", "1.2.18"
end
4 changes: 0 additions & 4 deletions Rakefile
@@ -1,6 +1,3 @@
require File.expand_path('../.bundle/environment', __FILE__)
Bundler.require(:default, :rake)

$LOAD_PATH.unshift File.expand_path("#{File.dirname(__FILE__)}/lib")

require 'spec'
Expand Down Expand Up @@ -44,7 +41,6 @@ namespace :jeweler do

begin
require 'jeweler'
require 'rake'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "jasmine"
gemspec.summary = "Jasmine Ruby Runner"
Expand Down
4 changes: 3 additions & 1 deletion spec/spec_helper.rb
@@ -1,4 +1,6 @@
require File.expand_path('../../.bundle/environment', __FILE__)
require "rubygems"
require "bundler"

Bundler.require(:default, :test)

require 'spec'
Expand Down

0 comments on commit 666b968

Please sign in to comment.