Skip to content

Commit

Permalink
Adding shotgun >=0.4 dependency and removing unnecessary files in the…
Browse files Browse the repository at this point in the history
… gemspac
  • Loading branch information
theIV committed Dec 5, 2009
1 parent 8daf4c7 commit fdfaef3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Rakefile
Expand Up @@ -22,13 +22,15 @@ begin
gem.add_dependency('sinatra', '>= 0.9.4')
gem.add_dependency('thin', '>= 1.2.3')
gem.add_dependency('webrat', '>= 0.5.3')
gem.add_dependency('shotgun', '>= 0.4')

# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
gem.files = FileList[ 'app_generators/**/*',
'bin/*',
'lib/**/*.rb',
'[A-Z]*',
'spec/**/*'].to_a
'spec/**/*'].to_a.reject { |f| f =~ /^spec\/tmp/ }
gem.test_files = FileList['spec/**/*'].to_a.reject { |f| f =~ /^spec\/tmp/ }
end
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
Expand Down
12 changes: 9 additions & 3 deletions tempatra.gemspec
Expand Up @@ -9,14 +9,15 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Olivier Lauzon"]
s.date = %q{2009-11-29}
s.date = %q{2009-12-04}
s.default_executable = %q{tempatra}
s.description = %q{A Sinatra application generator using Blueprint CSS, jQuery, Haml, Sass, Compass, RSpec, Cucumber, and Webrat.}
s.email = %q{olauzon@gmail.com}
s.executables = ["tempatra"]
s.extra_rdoc_files = [
"LICENSE",
"README.md"
"README.md",
"TODO"
]
s.files = [
"CHANGELOG",
Expand Down Expand Up @@ -63,7 +64,9 @@ Gem::Specification.new do |s|
s.rubygems_version = %q{1.3.5}
s.summary = %q{A RubiGen based Sinatra application generator.}
s.test_files = [
"spec/spec_helper.rb",
"spec/rcov.opts",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/tempatra_spec.rb"
]

Expand All @@ -83,6 +86,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency(%q<sinatra>, [">= 0.9.4"])
s.add_runtime_dependency(%q<thin>, [">= 1.2.3"])
s.add_runtime_dependency(%q<webrat>, [">= 0.5.3"])
s.add_runtime_dependency(%q<shotgun>, [">= 0.4"])
else
s.add_dependency(%q<compass>, [">= 0.8.17"])
s.add_dependency(%q<cucumber>, [">= 0.4.4"])
Expand All @@ -95,6 +99,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<sinatra>, [">= 0.9.4"])
s.add_dependency(%q<thin>, [">= 1.2.3"])
s.add_dependency(%q<webrat>, [">= 0.5.3"])
s.add_dependency(%q<shotgun>, [">= 0.4"])
end
else
s.add_dependency(%q<compass>, [">= 0.8.17"])
Expand All @@ -108,6 +113,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<sinatra>, [">= 0.9.4"])
s.add_dependency(%q<thin>, [">= 1.2.3"])
s.add_dependency(%q<webrat>, [">= 0.5.3"])
s.add_dependency(%q<shotgun>, [">= 0.4"])
end
end

0 comments on commit fdfaef3

Please sign in to comment.