Skip to content

Commit

Permalink
fixed dependecy resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
mdietrichstein committed Apr 6, 2011
1 parent 70500ac commit 6c21209
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
5 changes: 2 additions & 3 deletions Gemfile
@@ -1,7 +1,6 @@
source "http://rubygems.org"
# Add dependencies required to use your gem here.
# Example:
# gem "activesupport", ">= 2.3.5"

gem "dbf", ">= 1.5.0"

# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
Expand Down
8 changes: 8 additions & 0 deletions Gemfile.lock
@@ -1,8 +1,15 @@
GEM
remote: http://rubygems.org/
specs:
activesupport (3.0.6)
dbf (1.5.2)
activesupport (~> 3.0.0)
fastercsv (= 1.5.3)
i18n (~> 0.4.2)
diff-lcs (1.1.2)
fastercsv (1.5.3)
git (1.2.5)
i18n (0.4.2)
jeweler (1.5.2)
bundler (~> 1.0.0)
git (>= 1.2.5)
Expand All @@ -23,6 +30,7 @@ PLATFORMS

DEPENDENCIES
bundler (~> 1.0.0)
dbf (>= 1.5.0)
jeweler (~> 1.5.2)
rcov
rspec (~> 2.5.0)
1 change: 1 addition & 0 deletions README.rdoc
@@ -1,4 +1,5 @@
= ruby-shapefile
http://github.com/toastbrot/ruby-shapefile

Pure ruby parser for .shp shapefiles and .dbf attribute files.

Expand Down
4 changes: 3 additions & 1 deletion Rakefile
Expand Up @@ -19,7 +19,9 @@ Jeweler::Tasks.new do |gem|
gem.email = "marc@dietrichstein.net"
gem.authors = ["Marc Dietrichstein"]

gem.add_runtime_dependency 'dbf', '> 1.5.0'
gem.add_dependency 'dbf', '> 1.5.0'
#gem.add_development_dependency 'dbf', '> 1.5.0'
#gem.add_runtime_dependency 'dbf', '> 1.5.0'
# gem.add_development_dependency 'rspec', '> 1.2.3'
end
Jeweler::RubygemsDotOrgTasks.new
Expand Down

0 comments on commit 6c21209

Please sign in to comment.