Skip to content

Commit

Permalink
Clean up gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Elliott and Taylor Mock authored and hashrocketeer committed May 6, 2014
1 parent 1e20b8b commit c5bc801
Showing 1 changed file with 11 additions and 27 deletions.
38 changes: 11 additions & 27 deletions slurper.gemspec
@@ -1,37 +1,21 @@
# -*- encoding: utf-8 -*-

require 'bundler'

Gem::Specification.new do |gem|
gem.name = %q{slurper}
gem.name = "slurper"
gem.version = "1.1.8"
gem.license = "MIT"

gem.required_rubygems_version = ">= 1.3.6"
gem.authors = ["Wes Gibbs", "Adam Lowe", "Stephen Caudill", "Tim Pope"]
gem.date = Date.today.to_s
gem.default_executable = %q{slurp}
gem.description = %q{
Slurps stories from the given file (stories.slurper by default) and creates Pivotal Tracker stories from them. Useful during story carding sessions when you want to capture a number of stories quickly without clicking your way through the Tracker UI.
}
gem.email = %q{dev@hashrocket.com}
gem.authors = ["Hashrocket"]
gem.default_executable = 'slurp'
gem.description = "Slurps stories from the given file (stories.slurper by default) and creates Pivotal Tracker stories from them. Useful during story carding sessions when you want to capture a number of stories quickly without clicking your way through the Tracker UI."
gem.email = "dev@hashrocket.com"
gem.executables = ["slurp"]
gem.extra_rdoc_files = [
"README.rdoc"
]
gem.files = [
"bin/slurp",
"lib/slurper.rb",
"lib/story.rb",
"lib/cacert.pem"
]
gem.homepage = %q{http://github.com/hashrocket/slurper}
gem.extra_rdoc_files = ["README.rdoc"]
gem.files = Dir.glob("lib/**/*") + %w(bin/slurp MIT_LICENSE README.rdoc Rakefile)
gem.homepage = "http://github.com/hashrocket/slurper"
gem.rdoc_options = ["--charset=UTF-8"]
gem.require_paths = ["lib"]
gem.summary = %q{takes a formatted story file and puts it on Pivotal Tracker}
gem.test_files = [
"spec/slurper_spec.rb",
"spec/story_spec.rb"
]
gem.require_path = "lib"
gem.summary = "takes a formatted story file and puts it on Pivotal Tracker"

gem.add_dependency("activeresource", ["~> 3.0.9"])
end

0 comments on commit c5bc801

Please sign in to comment.