Skip to content

Commit

Permalink
[padrino-gen] Added favicon
Browse files Browse the repository at this point in the history
[padrino-core] Now we use Sinatra 0.9.6 since previous versions on ruby >= 1.8.7-p248 raise a segfault bug
  • Loading branch information
DAddYE committed Mar 7, 2010
1 parent f5e8150 commit bb6ecb0
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rdoc
Expand Up @@ -2,6 +2,12 @@

== 0.9.5 (Unreleased)

* Now we use Sinatra 0.9.6 since previous versions on ruby >= 1.8.7-p248 raise a segfault bug
* Refactored executables
* Added strip_tags helper
* Fixed model_attribute_translate helper
* Added favicon
* Prevent bundler gem clashing
* Fixed minor SASS support issue for haml generated projects

== 0.9.4
Expand Down
1 change: 1 addition & 0 deletions Rakefile
Expand Up @@ -48,6 +48,7 @@ task :clean do
%w(doc tmp pkg coverage).each { |dir| FileUtils.rm_rf dir }
end
end
Dir["**/*.gem"].each { |gem| FileUtils.rm_rf gem }
end

desc "Clean pkg and other stuff"
Expand Down
2 changes: 1 addition & 1 deletion padrino-admin/padrino-admin.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
s.date = %q{2010-03-03}
s.date = %q{2010-03-07}
s.description = %q{Admin View for Padrino applications}
s.email = %q{padrinorb@gmail.com}
s.extra_rdoc_files = [
Expand Down
2 changes: 1 addition & 1 deletion padrino-core/Rakefile
Expand Up @@ -13,7 +13,7 @@ begin
gem.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
gem.executables = ["padrino"]
gem.rubyforge_project = 'padrino-core'
gem.add_runtime_dependency "sinatra", ">= 0.9.4"
gem.add_runtime_dependency "sinatra", ">= 0.9.6"
gem.add_runtime_dependency "i18n", ">= 0.3.2"
gem.add_runtime_dependency "usher", ">= 0.6.2"
gem.add_runtime_dependency "thor", ">= 0.13.0"
Expand Down
8 changes: 4 additions & 4 deletions padrino-core/padrino-core.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
s.date = %q{2010-03-03}
s.date = %q{2010-03-07}
s.default_executable = %q{padrino}
s.description = %q{The Padrino core gem required for use of this framework}
s.email = %q{padrinorb@gmail.com}
Expand Down Expand Up @@ -78,7 +78,7 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<sinatra>, [">= 0.9.4"])
s.add_runtime_dependency(%q<sinatra>, [">= 0.9.6"])
s.add_runtime_dependency(%q<i18n>, [">= 0.3.2"])
s.add_runtime_dependency(%q<usher>, [">= 0.6.2"])
s.add_runtime_dependency(%q<thor>, [">= 0.13.0"])
Expand All @@ -89,7 +89,7 @@ Gem::Specification.new do |s|
s.add_development_dependency(%q<rack-test>, [">= 0.5.0"])
s.add_development_dependency(%q<webrat>, [">= 0.5.1"])
else
s.add_dependency(%q<sinatra>, [">= 0.9.4"])
s.add_dependency(%q<sinatra>, [">= 0.9.6"])
s.add_dependency(%q<i18n>, [">= 0.3.2"])
s.add_dependency(%q<usher>, [">= 0.6.2"])
s.add_dependency(%q<thor>, [">= 0.13.0"])
Expand All @@ -101,7 +101,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<webrat>, [">= 0.5.1"])
end
else
s.add_dependency(%q<sinatra>, [">= 0.9.4"])
s.add_dependency(%q<sinatra>, [">= 0.9.6"])
s.add_dependency(%q<i18n>, [">= 0.3.2"])
s.add_dependency(%q<usher>, [">= 0.6.2"])
s.add_dependency(%q<thor>, [">= 0.13.0"])
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion padrino-gen/padrino-gen.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
s.date = %q{2010-03-03}
s.date = %q{2010-03-07}
s.default_executable = %q{padrino-gen}
s.description = %q{Generators for easily creating and building padrino applications from the console}
s.email = %q{padrinorb@gmail.com}
Expand Down
1 change: 1 addition & 0 deletions padrino-gen/test/helper.rb
Expand Up @@ -14,6 +14,7 @@
end

require 'padrino-gen'
require 'padrino-core/support_lite'

Padrino::Generators.load_components!

Expand Down
1 change: 1 addition & 0 deletions padrino-gen/test/test_project_generator.rb
Expand Up @@ -16,6 +16,7 @@ def setup
assert_file_exists('/tmp/sample_project/app')
assert_file_exists('/tmp/sample_project/config/boot.rb')
assert_file_exists('/tmp/sample_project/spec/spec_helper.rb')
assert_file_exists('/tmp/sample_project/public/favicon.ico')
end

should "not create models folder if no orm is chosen" do
Expand Down
2 changes: 1 addition & 1 deletion padrino-helpers/padrino-helpers.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
s.date = %q{2010-03-03}
s.date = %q{2010-03-07}
s.description = %q{Tag helpers, asset helpers, form helpers, form builders and many more helpers for padrino}
s.email = %q{padrinorb@gmail.com}
s.extra_rdoc_files = [
Expand Down
2 changes: 1 addition & 1 deletion padrino-mailer/padrino-mailer.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
s.date = %q{2010-03-03}
s.date = %q{2010-03-07}
s.description = %q{Mailer system for padrino allowing easy delivery of application emails}
s.email = %q{padrinorb@gmail.com}
s.extra_rdoc_files = [
Expand Down
2 changes: 1 addition & 1 deletion padrino/padrino.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
s.date = %q{2010-03-03}
s.date = %q{2010-03-07}
s.description = %q{The Godfather of Sinatra provides a full-stack agnostic framework on top of Sinatra}
s.email = %q{padrinorb@gmail.com}
s.extra_rdoc_files = [
Expand Down

0 comments on commit bb6ecb0

Please sign in to comment.