Skip to content

Commit

Permalink
moving restfulie dependencies to gemspec so that it is installed with…
Browse files Browse the repository at this point in the history
… restfulie, and putting gempsec on Gemfile so that we dont need to duplicate
  • Loading branch information
josedonizetti committed Jan 23, 2011
1 parent 6e59b5b commit 6ea6054
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 1 addition & 5 deletions Gemfile
@@ -1,10 +1,6 @@
source :gemcutter

gem "rack-conneg"
gem "sqlite3-ruby"
gem 'tokamak', ">= 1.0.0.beta4"
gem 'medie', ">= 1.0.0.beta4"
gem 'respondie', "~> 0.9.0"
gemspec

if RUBY_VERSION < "1.9"
gem "ruby-debug"
Expand Down
8 changes: 7 additions & 1 deletion restfulie.gemspec
Expand Up @@ -13,7 +13,13 @@ Gem::Specification.new do |s|
s.require_paths = ["lib"]
s.rubygems_version = %q{1.4.1}
s.summary = %q{Hypermedia aware resource based library in ruby (client side) and ruby on rails (server side).}


s.add_dependency("rack-conneg")
s.add_dependency("sqlite3-ruby")
s.add_dependency('tokamak', ">= 1.0.0.beta4")
s.add_dependency('medie', ">= 1.0.0.beta4")
s.add_dependency('respondie', "~> 0.9.0")

if s.respond_to? :specification_version then
s.specification_version = 3

Expand Down

0 comments on commit 6ea6054

Please sign in to comment.