Skip to content

Commit

Permalink
add Gemfile and fix gemspec dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Fuchs committed Oct 15, 2010
1 parent ccf833d commit 715986a
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
.bundle
2 changes: 2 additions & 0 deletions Gemfile
@@ -0,0 +1,2 @@
source :rubygems
gemspec
20 changes: 20 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,20 @@
PATH
remote: .
specs:
reference_tracking (0.0.4)

GEM
remote: http://rubygems.org/
specs:
mocha (0.9.8)
rake
rake (0.8.7)
test_declarative (0.0.4)

PLATFORMS
ruby

DEPENDENCIES
mocha
reference_tracking!
test_declarative
3 changes: 3 additions & 0 deletions reference_tracking.gemspec
Expand Up @@ -17,4 +17,7 @@ Gem::Specification.new do |s|
s.require_path = 'lib'
s.rubyforge_project = '[none]'
s.required_rubygems_version = '>= 1.3.6'

s.add_development_dependency 'mocha'
s.add_development_dependency 'test_declarative'
end
13 changes: 1 addition & 12 deletions test/test_helper.rb
Expand Up @@ -4,16 +4,5 @@
require 'test/unit'
require 'mocha'
require 'test_declarative'
require 'ruby-debug'
require 'reference_tracking'

# class Comment < Record
# def initialize
# @attributes = { :body => '' }
# end
#
# def id
# 2
# end
# end

# require 'ruby-debug'

0 comments on commit 715986a

Please sign in to comment.