diff --git a/Gemfile b/Gemfile index d63e982..87bdf93 100644 --- a/Gemfile +++ b/Gemfile @@ -4,3 +4,9 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } # Specify your gem's dependencies in ostruct.gemspec gemspec + +group :development do + gem "bundler" + gem "rake" + gem "test-unit" +end diff --git a/ostruct.gemspec b/ostruct.gemspec index 61bf6e7..08a7aef 100644 --- a/ostruct.gemspec +++ b/ostruct.gemspec @@ -21,8 +21,4 @@ Gem::Specification.new do |spec| spec.files = [".gitignore", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/ostruct.rb", "ostruct.gemspec"] spec.require_paths = ["lib"] - - spec.add_development_dependency "bundler" - spec.add_development_dependency "rake" - spec.add_development_dependency "test-unit" end