diff --git a/Gemfile b/Gemfile
index ad2ac02..7d40eac 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,13 +1,8 @@
 source 'https://rubygems.org'
-PACTO_HOME = File.expand_path '..', __FILE__
 
 # Specify your gem's dependencies in pacto.gemspec
-gemspec :name => 'pacto'
-
-Dir["#{PACTO_HOME}/pacto-*.gemspec"].each do |gemspec|
-  plugin = gemspec.scan(/pacto-(.*)\.gemspec/).flatten.first
-  gemspec(:name => "pacto-#{plugin}", :path => PACTO_HOME, :development_group => plugin)
-end
+gemspec name: 'pacto'
+gemspec name: 'pacto-server'
 
 # This is only used by Relish tests.  Putting it here let's travis
 # pre-install so we can speed up the test with `bundle install --local`,