Skip to content

Commit

Permalink
Update gemspec file
Browse files Browse the repository at this point in the history
  • Loading branch information
sosedoff committed Sep 11, 2013
1 parent 94c6243 commit 4fa6cc1
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions capistrano-unicorn.gemspec
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/capistrano-unicorn/version', __FILE__)

Gem::Specification.new do |gem|
gem.name = 'capistrano-unicorn'
gem.version = CapistranoUnicorn::VERSION.dup
gem.author = 'Dan Sosedoff'
gem.email = '[email protected]'
gem.homepage = 'https://github.com/sosedoff/capistrano-unicorn'
gem.summary = %q{Unicorn integration for Capistrano}
gem.description = %q{Capistrano plugin that integrates Unicorn server tasks.}
Gem::Specification.new do |spec|
spec.name = 'capistrano-unicorn'
spec.version = CapistranoUnicorn::VERSION.dup
spec.author = 'Dan Sosedoff'
spec.email = '[email protected]'
spec.homepage = 'https://github.com/sosedoff/capistrano-unicorn'
spec.summary = %q{Unicorn integration for Capistrano}
spec.description = %q{Capistrano plugin that integrates Unicorn server tasks.}
spec.license = 'MIT'

gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
gem.require_paths = ['lib']
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
spec.require_paths = ['lib']

gem.add_development_dependency 'rake'

gem.add_runtime_dependency 'capistrano'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'unicorn'
spec.add_runtime_dependency 'capistrano'
end

0 comments on commit 4fa6cc1

Please sign in to comment.