From 189e8499ac6808681ee8f23668173b22885cad44 Mon Sep 17 00:00:00 2001 From: Guillermo Iguaran Date: Wed, 5 Sep 2012 15:03:29 -0500 Subject: [PATCH] Add sqlite3 and mocha as development dependencies --- Gemfile | 1 - protected_attributes.gemspec | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index ba2f9e0..b7b5bea 100644 --- a/Gemfile +++ b/Gemfile @@ -4,6 +4,5 @@ source 'https://rubygems.org' gem 'rails', path: '~/code/rails' gem 'activerecord-deprecated_finders', git: 'git://github.com/rails/activerecord-deprecated_finders' gem 'journey', git: 'git://github.com/rails/journey' -gem 'mocha' gemspec diff --git a/protected_attributes.gemspec b/protected_attributes.gemspec index 58c88ca..720518a 100644 --- a/protected_attributes.gemspec +++ b/protected_attributes.gemspec @@ -21,4 +21,7 @@ Gem::Specification.new do |gem| gem.add_dependency "activerecord", ">= 4.0.0.beta", "< 5.0" gem.add_dependency "actionpack", ">= 4.0.0.beta", "< 5.0" gem.add_dependency "railties", ">= 4.0.0.beta", "< 5.0" + + gem.add_development_dependency "sqlite3" + gem.add_development_dependency "mocha" end