padrino-gen 0.7.2 → 0.7.3

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -9,14 +9,15 @@ begin
9
9
  gem.name = "padrino-gen"
10
10
  gem.summary = "Generators for easily creating and building padrino applications"
11
11
  gem.description = "Generators for easily creating and building padrino applications from the console"
12
- gem.email = "nesquena@gmail.com"
12
+ gem.email = "padrinorb@gmail.com"
13
13
  gem.homepage = "http://github.com/padrino/padrino-framework/tree/master/padrino-gen"
14
14
  gem.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
15
15
  gem.executables = ["padrino-gen"]
16
+ gem.rubyforge_project = 'padrino-gen'
16
17
  gem.add_runtime_dependency "sinatra", ">= 0.9.2"
17
18
  gem.add_runtime_dependency "padrino-core", "= #{GEM_VERSION}"
18
19
  gem.add_runtime_dependency "thor", ">= 0.13.0"
19
- gem.add_runtime_dependency "bundler", ">= 0.5.0"
20
+ gem.add_runtime_dependency "bundler", ">= 0.8.1"
20
21
  gem.add_development_dependency "haml", ">= 2.2.1"
21
22
  gem.add_development_dependency "shoulda", ">= 0"
22
23
  gem.add_development_dependency "mocha", ">= 0.9.7"
@@ -26,6 +27,7 @@ begin
26
27
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
27
28
  end
28
29
  Jeweler::GemcutterTasks.new
30
+ Jeweler::GemcutterTasks.new
29
31
  rescue LoadError
30
32
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
31
33
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.7.2
1
+ 0.7.3
@@ -2,7 +2,7 @@ clear_sources
2
2
  source 'http://gemcutter.org'
3
3
 
4
4
  # Project requirements
5
- gem 'sinatra'
5
+ gem 'sinatra', :require_as => 'sinatra/base'
6
6
  gem 'padrino'
7
7
  gem 'rack-flash'
8
8
 
@@ -9,7 +9,7 @@ class <%= @class_name %> < Padrino::Application
9
9
  # set :reload, false # Reload application files (default in development)
10
10
  # set :default_builder, "foo" # Set a custom form builder (default 'StandardFormBuilder')
11
11
  # set :locale, :en # Set the current I18n.locale (default :en)
12
- # set :translations, "bar" # Set path for I18n translations (default your_app/locales)
12
+ # set :locale_path, "bar" # Set path for I18n translations (default your_app/locales)
13
13
  # enable :autolocale # Auto Set locale if url match /:lang/foo/bar (disabled by default)
14
14
  # disable :padrino_helpers # Disables padrino markup helpers (enabled by default if present)
15
15
  # disable :padrino_mailer # Disables padrino mailer (enabled by default if present)
@@ -57,7 +57,7 @@ module Padrino
57
57
  AR
58
58
 
59
59
  def setup_orm
60
- require_dependencies 'active_record'
60
+ require_dependencies 'activerecord', :require_as => 'active_record'
61
61
  create_file("config/database.rb", AR)
62
62
  empty_directory('app/models')
63
63
  end
data/padrino-gen.gemspec CHANGED
@@ -5,14 +5,14 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{padrino-gen}
8
- s.version = "0.7.2"
8
+ s.version = "0.7.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
12
- s.date = %q{2010-02-03}
12
+ s.date = %q{2010-02-07}
13
13
  s.default_executable = %q{padrino-gen}
14
14
  s.description = %q{Generators for easily creating and building padrino applications from the console}
15
- s.email = %q{nesquena@gmail.com}
15
+ s.email = %q{padrinorb@gmail.com}
16
16
  s.executables = ["padrino-gen"]
17
17
  s.extra_rdoc_files = [
18
18
  "README.rdoc"
@@ -89,6 +89,7 @@ Gem::Specification.new do |s|
89
89
  s.homepage = %q{http://github.com/padrino/padrino-framework/tree/master/padrino-gen}
90
90
  s.rdoc_options = ["--charset=UTF-8"]
91
91
  s.require_paths = ["lib"]
92
+ s.rubyforge_project = %q{padrino-gen}
92
93
  s.rubygems_version = %q{1.3.5}
93
94
  s.summary = %q{Generators for easily creating and building padrino applications}
94
95
 
@@ -98,9 +99,9 @@ Gem::Specification.new do |s|
98
99
 
99
100
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
100
101
  s.add_runtime_dependency(%q<sinatra>, [">= 0.9.2"])
101
- s.add_runtime_dependency(%q<padrino-core>, ["= 0.7.2"])
102
+ s.add_runtime_dependency(%q<padrino-core>, ["= 0.7.3"])
102
103
  s.add_runtime_dependency(%q<thor>, [">= 0.13.0"])
103
- s.add_runtime_dependency(%q<bundler>, [">= 0.5.0"])
104
+ s.add_runtime_dependency(%q<bundler>, [">= 0.8.1"])
104
105
  s.add_development_dependency(%q<haml>, [">= 2.2.1"])
105
106
  s.add_development_dependency(%q<shoulda>, [">= 0"])
106
107
  s.add_development_dependency(%q<mocha>, [">= 0.9.7"])
@@ -109,9 +110,9 @@ Gem::Specification.new do |s|
109
110
  s.add_development_dependency(%q<fakeweb>, [">= 1.2.3"])
110
111
  else
111
112
  s.add_dependency(%q<sinatra>, [">= 0.9.2"])
112
- s.add_dependency(%q<padrino-core>, ["= 0.7.2"])
113
+ s.add_dependency(%q<padrino-core>, ["= 0.7.3"])
113
114
  s.add_dependency(%q<thor>, [">= 0.13.0"])
114
- s.add_dependency(%q<bundler>, [">= 0.5.0"])
115
+ s.add_dependency(%q<bundler>, [">= 0.8.1"])
115
116
  s.add_dependency(%q<haml>, [">= 2.2.1"])
116
117
  s.add_dependency(%q<shoulda>, [">= 0"])
117
118
  s.add_dependency(%q<mocha>, [">= 0.9.7"])
@@ -121,9 +122,9 @@ Gem::Specification.new do |s|
121
122
  end
122
123
  else
123
124
  s.add_dependency(%q<sinatra>, [">= 0.9.2"])
124
- s.add_dependency(%q<padrino-core>, ["= 0.7.2"])
125
+ s.add_dependency(%q<padrino-core>, ["= 0.7.3"])
125
126
  s.add_dependency(%q<thor>, [">= 0.13.0"])
126
- s.add_dependency(%q<bundler>, [">= 0.5.0"])
127
+ s.add_dependency(%q<bundler>, [">= 0.8.1"])
127
128
  s.add_dependency(%q<haml>, [">= 2.2.1"])
128
129
  s.add_dependency(%q<shoulda>, [">= 0"])
129
130
  s.add_dependency(%q<mocha>, [">= 0.9.7"])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: padrino-gen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Padrino Team
@@ -12,7 +12,7 @@ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
14
 
15
- date: 2010-02-03 00:00:00 +01:00
15
+ date: 2010-02-07 00:00:00 +01:00
16
16
  default_executable: padrino-gen
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
@@ -33,7 +33,7 @@ dependencies:
33
33
  requirements:
34
34
  - - "="
35
35
  - !ruby/object:Gem::Version
36
- version: 0.7.2
36
+ version: 0.7.3
37
37
  version:
38
38
  - !ruby/object:Gem::Dependency
39
39
  name: thor
@@ -53,7 +53,7 @@ dependencies:
53
53
  requirements:
54
54
  - - ">="
55
55
  - !ruby/object:Gem::Version
56
- version: 0.5.0
56
+ version: 0.8.1
57
57
  version:
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: haml
@@ -116,7 +116,7 @@ dependencies:
116
116
  version: 1.2.3
117
117
  version:
118
118
  description: Generators for easily creating and building padrino applications from the console
119
- email: nesquena@gmail.com
119
+ email: padrinorb@gmail.com
120
120
  executables:
121
121
  - padrino-gen
122
122
  extensions: []
@@ -214,7 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
214
214
  version:
215
215
  requirements: []
216
216
 
217
- rubyforge_project:
217
+ rubyforge_project: padrino-gen
218
218
  rubygems_version: 1.3.5
219
219
  signing_key:
220
220
  specification_version: 3