Skip to content

Commit db94749

Browse files
committedJan 2, 2015
Add development dependencies to gemspec, and add Gemfile
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.
1 parent 85529b1 commit db94749

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed
 

‎Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source 'https://rubygems.org'
2+
gemspec

‎sequel.gemspec

+4
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,8 @@ SEQUEL_GEMSPEC = Gem::Specification.new do |s|
1717
s.require_path = "lib"
1818
s.bindir = 'bin'
1919
s.executables << 'sequel'
20+
s.add_development_dependency "rspec"
21+
s.add_development_dependency "tzinfo"
22+
s.add_development_dependency "activemodel"
23+
s.add_development_dependency "nokogiri"
2024
end

0 commit comments

Comments
 (0)
Please sign in to comment.