Skip to content

Commit

Permalink
removed extraneous statements
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Nov 20, 2009
1 parent 332cb86 commit 1eec37e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
7 changes: 0 additions & 7 deletions Rakefile
Expand Up @@ -7,25 +7,18 @@ AUTHOR = "Erik Michaels-Ober"
EMAIL = "sferik@gmail.com"
HOMEPAGE = "http://github.com/sferik/mlb"
SUMMARY = "MLB.rb is a Ruby library for retrieving current Major League Baseball players, managers, teams, divisions, and leagues."
GEM_VERSION = "0.1.1"

begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = GEM_NAME
gemspec.version = GEM_VERSION
gemspec.platform = Gem::Platform::RUBY
gemspec.has_rdoc = true
gemspec.extra_rdoc_files = ["README.rdoc", "LICENSE"]
gemspec.summary = SUMMARY
gemspec.description = gemspec.summary
gemspec.author = AUTHOR
gemspec.email = EMAIL
gemspec.homepage = HOMEPAGE
gemspec.add_dependency("httparty", ">= 0.4.5")
gemspec.add_dependency("json", ">= 1.1.9")
gemspec.require_path = "lib"
gemspec.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("{lib}/**/*")
end
Jeweler::GemcutterTasks.new
rescue LoadError
Expand Down
1 change: 1 addition & 0 deletions VERSION
@@ -0,0 +1 @@
0.1.1
8 changes: 5 additions & 3 deletions mlb.gemspec
Expand Up @@ -9,20 +9,22 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Erik Michaels-Ober"]
s.date = %q{2009-11-13}
s.date = %q{2009-11-20}
s.description = %q{MLB.rb is a Ruby library for retrieving current Major League Baseball players, managers, teams, divisions, and leagues.}
s.email = %q{sferik@gmail.com}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
"LICENSE",
".gitignore",
"LICENSE",
"README.rdoc",
"Rakefile",
"lib/mlb.rb",
"lib/mlb/player.rb",
"lib/mlb/team.rb"
"lib/mlb/team.rb",
"mlb.gemspec"
]
s.homepage = %q{http://github.com/sferik/mlb}
s.rdoc_options = ["--charset=UTF-8"]
Expand Down

0 comments on commit 1eec37e

Please sign in to comment.