Skip to content

Commit

Permalink
Add development dependencies to gemspec, and add Gemfile
Browse files Browse the repository at this point in the history
Only rspec is really required for development, as tzinfo,
activemodel, and nokogiri are only need to test specific
extensions/plugins.  But it is best to install all of them
so that all plugins/extensions are tested.
  • Loading branch information
jeremyevans committed Jan 2, 2015
1 parent 85529b1 commit db94749
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Gemfile
@@ -0,0 +1,2 @@
source 'https://rubygems.org'
gemspec
4 changes: 4 additions & 0 deletions sequel.gemspec
Expand Up @@ -17,4 +17,8 @@ SEQUEL_GEMSPEC = Gem::Specification.new do |s|
s.require_path = "lib"
s.bindir = 'bin'
s.executables << 'sequel'
s.add_development_dependency "rspec"
s.add_development_dependency "tzinfo"
s.add_development_dependency "activemodel"
s.add_development_dependency "nokogiri"
end

0 comments on commit db94749

Please sign in to comment.