-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates for changes in tilt
- Loading branch information
Daniel Neighman
committed
Apr 22, 2010
1 parent
f0509e4
commit 1ca481f
Showing
6 changed files
with
26 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ TAGS | |
pkg | ||
.yardoc | ||
doc | ||
*.gem | ||
*.gem | ||
.bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
source :rubygems | ||
|
||
gem 'usher' | ||
gem 'rack', '~> 1.1' | ||
gem 'rack-test' | ||
gem 'hashie' | ||
gem 'extlib' | ||
gem 'tilt', '~> 0.9' | ||
gem 'rack-accept-media-types' | ||
|
||
gem 'rake', :require => false | ||
|
||
group(:test) do | ||
gem 'rspec' | ||
gem 'haml' | ||
gem 'erubis' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,7 @@ | ||
require 'rubygems' | ||
require 'rake' | ||
|
||
begin | ||
require 'jeweler' | ||
Jeweler::Tasks.new do |gem| | ||
gem.name = "pancake" | ||
gem.summary = %Q{Eat Pancake Stacks for Breakfast} | ||
gem.description = %Q{Eat Pancake Stacks for Breakfast} | ||
gem.email = "[email protected]" | ||
gem.homepage = "http://github.com/hassox/pancake" | ||
gem.authors = ["Daniel Neighman"] | ||
gem.add_development_dependency "rspec" | ||
gem.add_dependency "usher", ">=0.6.4" | ||
gem.add_development_dependency "extlib" | ||
gem.add_development_dependency "thor" | ||
gem.add_dependency "rack" | ||
gem.add_dependency "tilt", ">=0.3" | ||
gem.add_dependency "hashie", ">=0.1.4" | ||
gem.add_dependency "rack-accept-media-types" | ||
gem.require_path = 'lib' | ||
gem.autorequire = 'pancake' | ||
gem.bindir = "bin" | ||
gem.executables = %w( pancake-gen ) | ||
gem.files = %w(LICENSE README.textile Rakefile TODO) + Dir.glob("{lib,spec,bin}/**/{*,.[a-z]*}") | ||
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings | ||
end | ||
rescue LoadError | ||
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler" | ||
end | ||
|
||
require 'spec/rake/spectask' | ||
|
||
Spec::Rake::SpecTask.new(:spec) do |spec| | ||
spec.libs << 'lib' << 'spec' | ||
spec.spec_opts = %w(--format progress --color) | ||
|
@@ -41,9 +13,6 @@ Spec::Rake::SpecTask.new(:rcov) do |spec| | |
spec.pattern = 'spec/**/*_spec.rb' | ||
spec.rcov = true | ||
end | ||
|
||
task :spec => :check_dependencies | ||
|
||
task :default => :spec | ||
|
||
require 'rake/rdoctask' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters