Skip to content

Commit

Permalink
Add gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
matth committed Jun 15, 2010
1 parent 2905b56 commit 18f59cd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
chart-topper-*.gem
4 changes: 4 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,8 @@ namespace :test do
sh "cucumber #{base}/features"
end

end

task :gem do
sh 'gem build chart-topper.gemspec'
end
15 changes: 15 additions & 0 deletions chart-topper.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

Gem::Specification.new do |s|
s.name = "chart-topper"
s.version = "0.0.1"
s.author = "Matt Haynes"
s.email = "[email protected]"
s.homepage = "http://github.com/matth/chart-topper/tree/master"
s.summary = "A little Sinatra DSL extension to help make dynamic graphs with Gruff"
s.description = "Chart Topper is an extension to the Sinatra DSL to allow you to quickly and dynamically create image based chart's and graphs."
s.files = Dir.glob("lib/**/*") + %w(README.md)
s.require_path = "lib"
s.has_rdoc = false
s.add_dependency 'sinatra'
s.add_dependency 'gruff'
end
1 change: 0 additions & 1 deletion chart_topper.gemspec

This file was deleted.

0 comments on commit 18f59cd

Please sign in to comment.