Skip to content

Commit

Permalink
Refs #8684: Use bundler, enabling more precision regarding dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Graham Hughes authored and konstantin committed Jan 18, 2011
1 parent 321c43f commit 1b9c3bd
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Gemfile
@@ -0,0 +1,6 @@
gem 'right_http_connection', '1.2.5', :git => 'git@github.com:rightscale/right_http_connection.git'

group :development do
gem 'rake'
gem 'rcov'
end
18 changes: 18 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,18 @@
GIT
remote: git@github.com:rightscale/right_http_connection.git
revision: 0bc3343232133bdb38c237d8285525d74495d3f5
specs:
right_http_connection (1.2.5)

GEM
specs:
rake (0.8.7)
rcov (0.8.1.2.0)

PLATFORMS
ruby

DEPENDENCIES
rake
rcov
right_http_connection (= 1.2.5)!
3 changes: 3 additions & 0 deletions Rakefile
@@ -1,13 +1,16 @@
# -*- ruby -*-

require 'rubygems'
require 'bundler'
require "rake/testtask"
require 'rcov/rcovtask'
require 'rake/gempackagetask'
require 'rake/clean'
$: << File.dirname(__FILE__)
testglobs = ["test/ts_right_aws.rb"]

Bundler::GemHelper.install_tasks

# == Gem == #

gemtask = Rake::GemPackageTask.new(Gem::Specification.load("right_aws.gemspec")) do |package|
Expand Down

0 comments on commit 1b9c3bd

Please sign in to comment.