1
0
Fork 0
mirror of https://github.com/rspec/rspec-metagem.git synced 2022-11-09 12:09:29 -05:00

setup Gemfile for dev environment

This commit is contained in:
David Chelimsky 2010-06-21 21:25:48 -05:00
parent 447608ccd1
commit 647fcdcd95
3 changed files with 11 additions and 3 deletions

5
Gemfile Normal file
View file

@ -0,0 +1,5 @@
gem "rake"
gem "jeweler"
gem "rspec-core", :path => "../rspec-core"
gem "rspec-expectations", :path => "../rspec-expectations"
gem "rspec-mocks", :path => "../rspec-mocks"

View file

@ -1,3 +1,6 @@
require "bundler"
Bundler.setup
require 'rake'
require 'fileutils'
require 'pathname'

View file

@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["David Chelimsky", "Chad Humphries"]
s.date = %q{2010-06-18}
s.date = %q{2010-06-21}
s.description = %q{Meta-gem that depends on the other rspec gems}
s.email = %q{dchelimsky@gmail.com;chad.humphries@gmail.com}
s.extra_rdoc_files = [
@ -41,14 +41,14 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{rspec}
s.rubygems_version = %q{1.3.7}
s.rubygems_version = %q{1.3.6}
s.summary = %q{rspec-2.0.0.beta.12}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rspec-core>, ["= 2.0.0.beta.12"])
s.add_runtime_dependency(%q<rspec-expectations>, ["= 2.0.0.beta.12"])
s.add_runtime_dependency(%q<rspec-mocks>, ["= 2.0.0.beta.12"])