From d2fe23b52b87d66968ba0f2cb7d29b96ad0395c8 Mon Sep 17 00:00:00 2001 From: Rajan Agaskar Date: Thu, 31 Dec 2009 16:39:51 -0800 Subject: [PATCH] Only include jasmine from bin --- Rakefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 077d638..1dde107 100644 --- a/Rakefile +++ b/Rakefile @@ -39,7 +39,7 @@ task :jasmine => ['jasmine:server'] namespace :jeweler do unless File.exists?('jasmine/lib') - raise "Jasmine submodule isn't present. Run git submodule init && git submodule update." + raise "Jasmine submodule isn't present. Run git submodule update --init" end begin @@ -52,7 +52,8 @@ namespace :jeweler do gemspec.email = "ragaskar@gmail.com" gemspec.homepage = "http://github.com/pivotal/jasmine-ruby" gemspec.authors = ["Rajan Agaskar", "Christian Williams"] - gemspec.files = FileList.new('bin/jasmine', 'lib/**/**', 'jasmine/lib/**', 'jasmine/contrib/ruby/**', 'tasks/**', 'templates/**') + gemspec.executables = ["jasmine"] + gemspec.files = FileList.new('generators/**/**', 'lib/**/**', 'jasmine/lib/**', 'jasmine/contrib/ruby/**', 'tasks/**', 'templates/**') gemspec.add_dependency('rspec', '>= 1.1.5') gemspec.add_dependency('json', '>= 1.1.9') gemspec.add_dependency('rack', '>= 1.0.0')