Skip to content

Commit 31b7cd4

Browse files
authored
Merge pull request #57 from olleolleolle/fix/gemspec-with-description
Remove autogenerated notes from Gemspec, add description
2 parents 0ba0600 + 5f102e0 commit 31b7cd4

1 file changed

Lines changed: 5 additions & 36 deletions

File tree

email_reply_parser.gemspec

Lines changed: 5 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,33 @@
11
$LOAD_PATH.unshift '.'
22
require 'lib/email_reply_parser'
33

4-
## This is the rakegem gemspec template. Make sure you read and understand
5-
## all of the comments. Some sections require modification, and others can
6-
## be deleted if you don't need them. Once you understand the contents of
7-
## this file, feel free to delete any comments that begin with two hash marks.
8-
## You can find comprehensive Gem::Specification documentation, at
9-
## http://docs.rubygems.org/read/chapter/20
104
Gem::Specification.new do |s|
115
s.specification_version = 2 if s.respond_to? :specification_version=
126
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
137
s.rubygems_version = '1.3.5'
148
s.license = 'MIT'
159

16-
## Leave these as is they will be modified for you by the rake gemspec task.
17-
## If your rubyforge_project name is different, then edit it and comment out
18-
## the sub! line in the Rakefile
1910
s.name = 'email_reply_parser'
2011
s.version = EmailReplyParser::VERSION
2112
s.date = Time.now.strftime('%Y-%m-%d')
22-
s.rubyforge_project = 'email_reply_parser'
2313

24-
## Make sure your summary is short. The description may be as long
25-
## as you like.
26-
s.summary = "Short description used in Gem listings."
27-
s.description = "Long description. Maybe copied from the README."
14+
s.summary = "EmailReplyParser is a small library to parse plain text " \
15+
"email content."
16+
s.description = "EmailReplyParser is a small library to parse plain text " \
17+
"email content. This is what GitHub uses to display comments " \
18+
"that were created from email replies."
2819

29-
## List the primary authors. If there are a bunch of authors, it's probably
30-
## better to set the email to an email list or something. If you don't have
31-
## a custom homepage, consider using your GitHub URL or the like.
3220
s.authors = ["Rick Olson"]
3321
s.email = 'technoweenie@gmail.com'
3422
s.homepage = 'http://github.com/github/email_reply_parser'
3523

36-
## This gets added to the $LOAD_PATH so that 'lib/NAME.rb' can be required as
37-
## require 'NAME.rb' or'/lib/NAME/file.rb' can be as require 'NAME/file.rb'
3824
s.require_paths = %w[lib]
3925

40-
## This sections is only necessary if you have C extensions.
41-
#s.require_paths << 'ext'
42-
#s.extensions = %w[ext/extconf.rb]
43-
44-
## If your gem includes any executables, list them here.
45-
#s.executables = ["name"]
46-
#s.default_executable = 'name'
47-
48-
## Specify any RDoc options here. You'll want to add your README and
49-
## LICENSE files to the extra_rdoc_files list.
5026
s.rdoc_options = ["--charset=UTF-8"]
5127
s.extra_rdoc_files = %w[README.md LICENSE]
5228

53-
## List your runtime dependencies here. Runtime dependencies are those
54-
## that are needed for an end user to actually USE your code.
5529
#s.add_dependency('DEPNAME', [">= 1.1.0", "< 2.0.0"])
5630

57-
## List your development dependencies here. Development dependencies are
58-
## those that are only needed during development
5931
#s.add_development_dependency('DEVDEPNAME', [">= 1.1.0", "< 2.0.0"])
6032

6133
## Leave this section as-is. It will be automatically generated from the
@@ -94,8 +66,5 @@ Gem::Specification.new do |s|
9466
]
9567
# = MANIFEST =
9668

97-
## Test files will be grabbed from the file list. Make sure the path glob
98-
## matches what you actually use.
9969
s.test_files = s.files.select { |path| path =~ /^test\/.*_test\.rb/ }
10070
end
101-

0 commit comments

Comments
 (0)