railties 4.1.1 → 4.1.2.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +21 -0
- data/lib/rails/application.rb +12 -0
- data/lib/rails/application/configuration.rb +1 -1
- data/lib/rails/gem_version.rb +2 -2
- data/lib/rails/generators/app_base.rb +1 -2
- data/lib/rails/generators/named_base.rb +6 -1
- data/lib/rails/generators/rails/app/app_generator.rb +21 -0
- data/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +1 -2
- data/lib/rails/generators/rails/app/templates/config/initializers/assets.rb.tt +8 -0
- data/lib/rails/generators/rails/app/templates/test/test_helper.rb +0 -3
- data/lib/rails/tasks/framework.rake +1 -1
- data/lib/rails/test_help.rb +1 -0
- data/lib/rails/test_unit/railtie.rb +1 -1
- metadata +61 -73
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 92da416e15c5ab27869406201d9e4c6ffe9556c2
|
4
|
+
data.tar.gz: 529758f865a5979f1fc3094df39eb5935c683f2e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 477808e442131e753391a728ace071198b84b720ca2bd13786d9e7272d36dae6a977e73d03e39602b3287ccae30cf42b7550aa30ca20443d8dfbeba57caa479e
|
7
|
+
data.tar.gz: 4a316135f7f9b64b8794eb6455856d73ff15cfcd276d944ce0acab0602f0319e4698d1f92608590254c8ff6cd03266be84761a776c9c9a9defc6274cdf811412
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,24 @@
|
|
1
|
+
## Rails 4.1.2 (May 27, 2014) ##
|
2
|
+
|
3
|
+
* Load database configuration from the first `database.yml` available in paths.
|
4
|
+
|
5
|
+
*Pier-Olivier Thibault*
|
6
|
+
|
7
|
+
* Fix `console` and `generators` blocks defined at different environments.
|
8
|
+
|
9
|
+
Fixes #14748.
|
10
|
+
|
11
|
+
*Rafael Mendonça França*
|
12
|
+
|
13
|
+
* Move configuration of asset precompile list and version to an initializer.
|
14
|
+
|
15
|
+
*Matthew Draper*
|
16
|
+
|
17
|
+
* Do not set the Rails environment to test by default when using test_unit Railtie.
|
18
|
+
|
19
|
+
*Konstantin Shabanov*
|
20
|
+
|
21
|
+
|
1
22
|
## Rails 4.1.1 (May 6, 2014) ##
|
2
23
|
|
3
24
|
* No changes.
|
data/lib/rails/application.rb
CHANGED
@@ -232,6 +232,18 @@ module Rails
|
|
232
232
|
self.class.runner(&blk)
|
233
233
|
end
|
234
234
|
|
235
|
+
# Sends any console called in the instance of a new application up
|
236
|
+
# to the +console+ method defined in Rails::Railtie.
|
237
|
+
def console(&blk)
|
238
|
+
self.class.console(&blk)
|
239
|
+
end
|
240
|
+
|
241
|
+
# Sends any generators called in the instance of a new application up
|
242
|
+
# to the +generators+ method defined in Rails::Railtie.
|
243
|
+
def generators(&blk)
|
244
|
+
self.class.generators(&blk)
|
245
|
+
end
|
246
|
+
|
235
247
|
# Sends the +isolate_namespace+ method up to the class method.
|
236
248
|
def isolate_namespace(mod)
|
237
249
|
self.class.isolate_namespace(mod)
|
@@ -91,7 +91,7 @@ module Rails
|
|
91
91
|
# Loads and returns the entire raw configuration of database from
|
92
92
|
# values stored in `config/database.yml`.
|
93
93
|
def database_configuration
|
94
|
-
yaml = Pathname.new(paths["config/database"].first || "")
|
94
|
+
yaml = Pathname.new(paths["config/database"].existent.first || "")
|
95
95
|
|
96
96
|
config = if yaml.exist?
|
97
97
|
require "yaml"
|
data/lib/rails/gem_version.rb
CHANGED
@@ -203,8 +203,7 @@ module Rails
|
|
203
203
|
[GemfileEntry.path('rails', Rails::Generators::RAILS_DEV_PATH),
|
204
204
|
GemfileEntry.github('arel', 'rails/arel', '5-0-stable')]
|
205
205
|
elsif options.edge?
|
206
|
-
[GemfileEntry.github('rails', 'rails/rails', '4-1-stable')
|
207
|
-
GemfileEntry.github('arel', 'rails/arel', '5-0-stable')]
|
206
|
+
[GemfileEntry.github('rails', 'rails/rails', '4-1-stable')]
|
208
207
|
else
|
209
208
|
[GemfileEntry.version('rails',
|
210
209
|
Rails::VERSION::STRING,
|
@@ -30,7 +30,12 @@ module Rails
|
|
30
30
|
|
31
31
|
protected
|
32
32
|
attr_reader :file_name
|
33
|
-
|
33
|
+
|
34
|
+
# FIXME: We are avoiding to use alias because a bug on thor that make
|
35
|
+
# this method public and add it to the task list.
|
36
|
+
def singular_name
|
37
|
+
file_name
|
38
|
+
end
|
34
39
|
|
35
40
|
# Wrap block with namespace of current application
|
36
41
|
# if namespace exists and is not skipped
|
@@ -86,6 +86,16 @@ module Rails
|
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
|
+
def config_when_updating
|
90
|
+
cookie_serializer_config_exist = File.exist?('config/initializers/cookies_serializer.rb')
|
91
|
+
|
92
|
+
config
|
93
|
+
|
94
|
+
unless cookie_serializer_config_exist
|
95
|
+
gsub_file 'config/initializers/cookies_serializer.rb', /json/, 'marshal'
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
89
99
|
def database_yml
|
90
100
|
template "config/databases/#{options[:database]}.yml", "config/database.yml"
|
91
101
|
end
|
@@ -188,6 +198,11 @@ module Rails
|
|
188
198
|
build(:config)
|
189
199
|
end
|
190
200
|
|
201
|
+
def update_config_files
|
202
|
+
build(:config_when_updating)
|
203
|
+
end
|
204
|
+
remove_task :update_config_files
|
205
|
+
|
191
206
|
def create_boot_file
|
192
207
|
template "config/boot.rb"
|
193
208
|
end
|
@@ -231,6 +246,12 @@ module Rails
|
|
231
246
|
end
|
232
247
|
end
|
233
248
|
|
249
|
+
def delete_assets_initializer_skipping_sprockets
|
250
|
+
if options[:skip_sprockets]
|
251
|
+
remove_file 'config/initializers/assets.rb'
|
252
|
+
end
|
253
|
+
end
|
254
|
+
|
234
255
|
def finish_template
|
235
256
|
build(:leftovers)
|
236
257
|
end
|
@@ -33,8 +33,7 @@ Rails.application.configure do
|
|
33
33
|
# Generate digests for assets URLs.
|
34
34
|
config.assets.digest = true
|
35
35
|
|
36
|
-
#
|
37
|
-
config.assets.version = '1.0'
|
36
|
+
# `config.assets.precompile` has moved to config/initializers/assets.rb
|
38
37
|
<%- end -%>
|
39
38
|
|
40
39
|
# Specifies the header that your server uses for sending files.
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Version of your assets, change this if you want to expire all your assets.
|
4
|
+
Rails.application.config.assets.version = '1.0'
|
5
|
+
|
6
|
+
# Precompile additional assets.
|
7
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
8
|
+
# Rails.application.config.assets.precompile += %w( search.js )
|
@@ -5,9 +5,6 @@ require 'rails/test_help'
|
|
5
5
|
class ActiveSupport::TestCase
|
6
6
|
<% unless options[:skip_active_record] -%>
|
7
7
|
# Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
|
8
|
-
#
|
9
|
-
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
10
|
-
# -- they do not yet inherit this setting
|
11
8
|
fixtures :all
|
12
9
|
|
13
10
|
<% end -%>
|
@@ -55,7 +55,7 @@ namespace :rails do
|
|
55
55
|
# desc "Update config/boot.rb from your current rails install"
|
56
56
|
task :configs do
|
57
57
|
invoke_from_app_generator :create_boot_file
|
58
|
-
invoke_from_app_generator :
|
58
|
+
invoke_from_app_generator :update_config_files
|
59
59
|
end
|
60
60
|
|
61
61
|
# desc "Adds new executables to the application bin/ directory"
|
data/lib/rails/test_help.rb
CHANGED
@@ -4,6 +4,7 @@ abort("Abort testing: Your Rails environment is running in production mode!") if
|
|
4
4
|
|
5
5
|
require 'active_support/testing/autorun'
|
6
6
|
require 'active_support/test_case'
|
7
|
+
require 'action_controller'
|
7
8
|
require 'action_controller/test_case'
|
8
9
|
require 'action_dispatch/testing/integration'
|
9
10
|
require 'rails/generators/test_case'
|
metadata
CHANGED
@@ -1,104 +1,92 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: railties
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.1.
|
5
|
-
prerelease:
|
4
|
+
version: 4.1.2.rc1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- David Heinemeier Hansson
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-27 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: activesupport
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
17
|
- - '='
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version: 4.1.
|
19
|
+
version: 4.1.2.rc1
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
24
|
- - '='
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version: 4.1.
|
26
|
+
version: 4.1.2.rc1
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: actionpack
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
31
|
- - '='
|
36
32
|
- !ruby/object:Gem::Version
|
37
|
-
version: 4.1.
|
33
|
+
version: 4.1.2.rc1
|
38
34
|
type: :runtime
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
38
|
- - '='
|
44
39
|
- !ruby/object:Gem::Version
|
45
|
-
version: 4.1.
|
40
|
+
version: 4.1.2.rc1
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: rake
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- -
|
45
|
+
- - ">="
|
52
46
|
- !ruby/object:Gem::Version
|
53
47
|
version: 0.8.7
|
54
48
|
type: :runtime
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- -
|
52
|
+
- - ">="
|
60
53
|
- !ruby/object:Gem::Version
|
61
54
|
version: 0.8.7
|
62
55
|
- !ruby/object:Gem::Dependency
|
63
56
|
name: thor
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
58
|
requirements:
|
67
|
-
- -
|
59
|
+
- - ">="
|
68
60
|
- !ruby/object:Gem::Version
|
69
61
|
version: 0.18.1
|
70
|
-
- - <
|
62
|
+
- - "<"
|
71
63
|
- !ruby/object:Gem::Version
|
72
64
|
version: '2.0'
|
73
65
|
type: :runtime
|
74
66
|
prerelease: false
|
75
67
|
version_requirements: !ruby/object:Gem::Requirement
|
76
|
-
none: false
|
77
68
|
requirements:
|
78
|
-
- -
|
69
|
+
- - ">="
|
79
70
|
- !ruby/object:Gem::Version
|
80
71
|
version: 0.18.1
|
81
|
-
- - <
|
72
|
+
- - "<"
|
82
73
|
- !ruby/object:Gem::Version
|
83
74
|
version: '2.0'
|
84
75
|
- !ruby/object:Gem::Dependency
|
85
76
|
name: actionview
|
86
77
|
requirement: !ruby/object:Gem::Requirement
|
87
|
-
none: false
|
88
78
|
requirements:
|
89
79
|
- - '='
|
90
80
|
- !ruby/object:Gem::Version
|
91
|
-
version: 4.1.
|
81
|
+
version: 4.1.2.rc1
|
92
82
|
type: :development
|
93
83
|
prerelease: false
|
94
84
|
version_requirements: !ruby/object:Gem::Requirement
|
95
|
-
none: false
|
96
85
|
requirements:
|
97
86
|
- - '='
|
98
87
|
- !ruby/object:Gem::Version
|
99
|
-
version: 4.1.
|
100
|
-
description:
|
101
|
-
tasks.'
|
88
|
+
version: 4.1.2.rc1
|
89
|
+
description: 'Rails internals: application bootup, plugins, generators, and rake tasks.'
|
102
90
|
email: david@loudthinking.com
|
103
91
|
executables:
|
104
92
|
- rails
|
@@ -106,23 +94,25 @@ extensions: []
|
|
106
94
|
extra_rdoc_files: []
|
107
95
|
files:
|
108
96
|
- CHANGELOG.md
|
109
|
-
- README.rdoc
|
110
97
|
- RDOC_MAIN.rdoc
|
98
|
+
- README.rdoc
|
111
99
|
- bin/rails
|
100
|
+
- lib/rails.rb
|
112
101
|
- lib/rails/all.rb
|
113
102
|
- lib/rails/api/task.rb
|
114
103
|
- lib/rails/app_rails_loader.rb
|
104
|
+
- lib/rails/application.rb
|
115
105
|
- lib/rails/application/bootstrap.rb
|
116
106
|
- lib/rails/application/configuration.rb
|
117
107
|
- lib/rails/application/default_middleware_stack.rb
|
118
108
|
- lib/rails/application/finisher.rb
|
119
109
|
- lib/rails/application/routes_reloader.rb
|
120
|
-
- lib/rails/application.rb
|
121
110
|
- lib/rails/application_controller.rb
|
122
111
|
- lib/rails/backtrace_cleaner.rb
|
123
112
|
- lib/rails/cli.rb
|
124
113
|
- lib/rails/code_statistics.rb
|
125
114
|
- lib/rails/code_statistics_calculator.rb
|
115
|
+
- lib/rails/commands.rb
|
126
116
|
- lib/rails/commands/application.rb
|
127
117
|
- lib/rails/commands/commands_tasks.rb
|
128
118
|
- lib/rails/commands/console.rb
|
@@ -133,24 +123,25 @@ files:
|
|
133
123
|
- lib/rails/commands/runner.rb
|
134
124
|
- lib/rails/commands/server.rb
|
135
125
|
- lib/rails/commands/update.rb
|
136
|
-
- lib/rails/commands.rb
|
137
126
|
- lib/rails/configuration.rb
|
138
127
|
- lib/rails/console/app.rb
|
139
128
|
- lib/rails/console/helpers.rb
|
140
129
|
- lib/rails/deprecation.rb
|
130
|
+
- lib/rails/engine.rb
|
141
131
|
- lib/rails/engine/commands.rb
|
142
132
|
- lib/rails/engine/configuration.rb
|
143
133
|
- lib/rails/engine/railties.rb
|
144
|
-
- lib/rails/engine.rb
|
145
134
|
- lib/rails/gem_version.rb
|
146
|
-
- lib/rails/generators
|
135
|
+
- lib/rails/generators.rb
|
147
136
|
- lib/rails/generators/actions.rb
|
137
|
+
- lib/rails/generators/actions/create_migration.rb
|
148
138
|
- lib/rails/generators/active_model.rb
|
149
139
|
- lib/rails/generators/app_base.rb
|
150
140
|
- lib/rails/generators/base.rb
|
151
141
|
- lib/rails/generators/css/assets/assets_generator.rb
|
152
142
|
- lib/rails/generators/css/assets/templates/stylesheet.css
|
153
143
|
- lib/rails/generators/css/scaffold/scaffold_generator.rb
|
144
|
+
- lib/rails/generators/erb.rb
|
154
145
|
- lib/rails/generators/erb/controller/controller_generator.rb
|
155
146
|
- lib/rails/generators/erb/controller/templates/view.html.erb
|
156
147
|
- lib/rails/generators/erb/mailer/mailer_generator.rb
|
@@ -162,13 +153,16 @@ files:
|
|
162
153
|
- lib/rails/generators/erb/scaffold/templates/index.html.erb
|
163
154
|
- lib/rails/generators/erb/scaffold/templates/new.html.erb
|
164
155
|
- lib/rails/generators/erb/scaffold/templates/show.html.erb
|
165
|
-
- lib/rails/generators/erb.rb
|
166
156
|
- lib/rails/generators/generated_attribute.rb
|
167
157
|
- lib/rails/generators/js/assets/assets_generator.rb
|
168
158
|
- lib/rails/generators/js/assets/templates/javascript.js
|
169
159
|
- lib/rails/generators/migration.rb
|
170
160
|
- lib/rails/generators/named_base.rb
|
161
|
+
- lib/rails/generators/rails/app/USAGE
|
171
162
|
- lib/rails/generators/rails/app/app_generator.rb
|
163
|
+
- lib/rails/generators/rails/app/templates/Gemfile
|
164
|
+
- lib/rails/generators/rails/app/templates/README.rdoc
|
165
|
+
- lib/rails/generators/rails/app/templates/Rakefile
|
172
166
|
- lib/rails/generators/rails/app/templates/app/assets/javascripts/application.js.tt
|
173
167
|
- lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css
|
174
168
|
- lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb.tt
|
@@ -177,6 +171,7 @@ files:
|
|
177
171
|
- lib/rails/generators/rails/app/templates/bin/bundle
|
178
172
|
- lib/rails/generators/rails/app/templates/bin/rails
|
179
173
|
- lib/rails/generators/rails/app/templates/bin/rake
|
174
|
+
- lib/rails/generators/rails/app/templates/config.ru
|
180
175
|
- lib/rails/generators/rails/app/templates/config/application.rb
|
181
176
|
- lib/rails/generators/rails/app/templates/config/boot.rb
|
182
177
|
- lib/rails/generators/rails/app/templates/config/databases/frontbase.yml
|
@@ -194,6 +189,7 @@ files:
|
|
194
189
|
- lib/rails/generators/rails/app/templates/config/environments/development.rb.tt
|
195
190
|
- lib/rails/generators/rails/app/templates/config/environments/production.rb.tt
|
196
191
|
- lib/rails/generators/rails/app/templates/config/environments/test.rb.tt
|
192
|
+
- lib/rails/generators/rails/app/templates/config/initializers/assets.rb.tt
|
197
193
|
- lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb
|
198
194
|
- lib/rails/generators/rails/app/templates/config/initializers/cookies_serializer.rb
|
199
195
|
- lib/rails/generators/rails/app/templates/config/initializers/filter_parameter_logging.rb
|
@@ -204,78 +200,77 @@ files:
|
|
204
200
|
- lib/rails/generators/rails/app/templates/config/locales/en.yml
|
205
201
|
- lib/rails/generators/rails/app/templates/config/routes.rb
|
206
202
|
- lib/rails/generators/rails/app/templates/config/secrets.yml
|
207
|
-
- lib/rails/generators/rails/app/templates/config.ru
|
208
203
|
- lib/rails/generators/rails/app/templates/db/seeds.rb.tt
|
209
|
-
- lib/rails/generators/rails/app/templates/Gemfile
|
210
204
|
- lib/rails/generators/rails/app/templates/gitignore
|
211
205
|
- lib/rails/generators/rails/app/templates/public/404.html
|
212
206
|
- lib/rails/generators/rails/app/templates/public/422.html
|
213
207
|
- lib/rails/generators/rails/app/templates/public/500.html
|
214
208
|
- lib/rails/generators/rails/app/templates/public/favicon.ico
|
215
209
|
- lib/rails/generators/rails/app/templates/public/robots.txt
|
216
|
-
- lib/rails/generators/rails/app/templates/Rakefile
|
217
|
-
- lib/rails/generators/rails/app/templates/README.rdoc
|
218
210
|
- lib/rails/generators/rails/app/templates/test/test_helper.rb
|
219
|
-
- lib/rails/generators/rails/
|
211
|
+
- lib/rails/generators/rails/assets/USAGE
|
220
212
|
- lib/rails/generators/rails/assets/assets_generator.rb
|
221
213
|
- lib/rails/generators/rails/assets/templates/javascript.js
|
222
214
|
- lib/rails/generators/rails/assets/templates/stylesheet.css
|
223
|
-
- lib/rails/generators/rails/
|
215
|
+
- lib/rails/generators/rails/controller/USAGE
|
224
216
|
- lib/rails/generators/rails/controller/controller_generator.rb
|
225
217
|
- lib/rails/generators/rails/controller/templates/controller.rb
|
226
|
-
- lib/rails/generators/rails/
|
218
|
+
- lib/rails/generators/rails/generator/USAGE
|
227
219
|
- lib/rails/generators/rails/generator/generator_generator.rb
|
228
220
|
- lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt
|
229
221
|
- lib/rails/generators/rails/generator/templates/USAGE.tt
|
230
|
-
- lib/rails/generators/rails/generator/
|
222
|
+
- lib/rails/generators/rails/generator/templates/templates/.empty_directory
|
223
|
+
- lib/rails/generators/rails/helper/USAGE
|
231
224
|
- lib/rails/generators/rails/helper/helper_generator.rb
|
232
225
|
- lib/rails/generators/rails/helper/templates/helper.rb
|
233
|
-
- lib/rails/generators/rails/helper/USAGE
|
234
|
-
- lib/rails/generators/rails/integration_test/integration_test_generator.rb
|
235
226
|
- lib/rails/generators/rails/integration_test/USAGE
|
236
|
-
- lib/rails/generators/rails/
|
227
|
+
- lib/rails/generators/rails/integration_test/integration_test_generator.rb
|
237
228
|
- lib/rails/generators/rails/migration/USAGE
|
238
|
-
- lib/rails/generators/rails/
|
229
|
+
- lib/rails/generators/rails/migration/migration_generator.rb
|
239
230
|
- lib/rails/generators/rails/model/USAGE
|
231
|
+
- lib/rails/generators/rails/model/model_generator.rb
|
232
|
+
- lib/rails/generators/rails/plugin/USAGE
|
240
233
|
- lib/rails/generators/rails/plugin/plugin_generator.rb
|
241
234
|
- lib/rails/generators/rails/plugin/templates/%name%.gemspec
|
235
|
+
- lib/rails/generators/rails/plugin/templates/Gemfile
|
236
|
+
- lib/rails/generators/rails/plugin/templates/MIT-LICENSE
|
237
|
+
- lib/rails/generators/rails/plugin/templates/README.rdoc
|
238
|
+
- lib/rails/generators/rails/plugin/templates/Rakefile
|
242
239
|
- lib/rails/generators/rails/plugin/templates/app/controllers/%name%/application_controller.rb.tt
|
243
240
|
- lib/rails/generators/rails/plugin/templates/app/helpers/%name%/application_helper.rb.tt
|
241
|
+
- lib/rails/generators/rails/plugin/templates/app/mailers/.empty_directory
|
242
|
+
- lib/rails/generators/rails/plugin/templates/app/models/.empty_directory
|
244
243
|
- lib/rails/generators/rails/plugin/templates/app/views/layouts/%name%/application.html.erb.tt
|
245
244
|
- lib/rails/generators/rails/plugin/templates/bin/rails.tt
|
246
245
|
- lib/rails/generators/rails/plugin/templates/config/routes.rb
|
247
|
-
- lib/rails/generators/rails/plugin/templates/Gemfile
|
248
246
|
- lib/rails/generators/rails/plugin/templates/gitignore
|
247
|
+
- lib/rails/generators/rails/plugin/templates/lib/%name%.rb
|
249
248
|
- lib/rails/generators/rails/plugin/templates/lib/%name%/engine.rb
|
250
249
|
- lib/rails/generators/rails/plugin/templates/lib/%name%/version.rb
|
251
|
-
- lib/rails/generators/rails/plugin/templates/lib/%name%.rb
|
252
250
|
- lib/rails/generators/rails/plugin/templates/lib/tasks/%name%_tasks.rake
|
253
|
-
- lib/rails/generators/rails/plugin/templates/MIT-LICENSE
|
254
251
|
- lib/rails/generators/rails/plugin/templates/rails/application.rb
|
255
252
|
- lib/rails/generators/rails/plugin/templates/rails/boot.rb
|
256
253
|
- lib/rails/generators/rails/plugin/templates/rails/javascripts.js
|
257
254
|
- lib/rails/generators/rails/plugin/templates/rails/routes.rb
|
258
255
|
- lib/rails/generators/rails/plugin/templates/rails/stylesheets.css
|
259
|
-
- lib/rails/generators/rails/plugin/templates/Rakefile
|
260
|
-
- lib/rails/generators/rails/plugin/templates/README.rdoc
|
261
256
|
- lib/rails/generators/rails/plugin/templates/test/%name%_test.rb
|
262
257
|
- lib/rails/generators/rails/plugin/templates/test/integration/navigation_test.rb
|
263
258
|
- lib/rails/generators/rails/plugin/templates/test/test_helper.rb
|
264
|
-
- lib/rails/generators/rails/plugin/USAGE
|
265
|
-
- lib/rails/generators/rails/resource/resource_generator.rb
|
266
259
|
- lib/rails/generators/rails/resource/USAGE
|
260
|
+
- lib/rails/generators/rails/resource/resource_generator.rb
|
267
261
|
- lib/rails/generators/rails/resource_route/resource_route_generator.rb
|
262
|
+
- lib/rails/generators/rails/scaffold/USAGE
|
268
263
|
- lib/rails/generators/rails/scaffold/scaffold_generator.rb
|
269
264
|
- lib/rails/generators/rails/scaffold/templates/scaffold.css
|
270
|
-
- lib/rails/generators/rails/
|
265
|
+
- lib/rails/generators/rails/scaffold_controller/USAGE
|
271
266
|
- lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb
|
272
267
|
- lib/rails/generators/rails/scaffold_controller/templates/controller.rb
|
273
|
-
- lib/rails/generators/rails/
|
268
|
+
- lib/rails/generators/rails/task/USAGE
|
274
269
|
- lib/rails/generators/rails/task/task_generator.rb
|
275
270
|
- lib/rails/generators/rails/task/templates/task.rb
|
276
|
-
- lib/rails/generators/rails/task/USAGE
|
277
271
|
- lib/rails/generators/resource_helpers.rb
|
278
272
|
- lib/rails/generators/test_case.rb
|
273
|
+
- lib/rails/generators/test_unit.rb
|
279
274
|
- lib/rails/generators/test_unit/controller/controller_generator.rb
|
280
275
|
- lib/rails/generators/test_unit/controller/templates/functional_test.rb
|
281
276
|
- lib/rails/generators/test_unit/generator/generator_generator.rb
|
@@ -295,26 +290,25 @@ files:
|
|
295
290
|
- lib/rails/generators/test_unit/plugin/templates/test_helper.rb
|
296
291
|
- lib/rails/generators/test_unit/scaffold/scaffold_generator.rb
|
297
292
|
- lib/rails/generators/test_unit/scaffold/templates/functional_test.rb
|
298
|
-
- lib/rails/generators/test_unit.rb
|
299
293
|
- lib/rails/generators/testing/assertions.rb
|
300
294
|
- lib/rails/generators/testing/behaviour.rb
|
301
295
|
- lib/rails/generators/testing/setup_and_teardown.rb
|
302
|
-
- lib/rails/generators.rb
|
303
296
|
- lib/rails/info.rb
|
304
297
|
- lib/rails/info_controller.rb
|
305
298
|
- lib/rails/initializable.rb
|
306
299
|
- lib/rails/mailers_controller.rb
|
307
300
|
- lib/rails/paths.rb
|
301
|
+
- lib/rails/rack.rb
|
308
302
|
- lib/rails/rack/debugger.rb
|
309
303
|
- lib/rails/rack/log_tailer.rb
|
310
304
|
- lib/rails/rack/logger.rb
|
311
|
-
- lib/rails/
|
305
|
+
- lib/rails/railtie.rb
|
312
306
|
- lib/rails/railtie/configurable.rb
|
313
307
|
- lib/rails/railtie/configuration.rb
|
314
|
-
- lib/rails/railtie.rb
|
315
308
|
- lib/rails/ruby_version_check.rb
|
316
309
|
- lib/rails/rubyprof_ext.rb
|
317
310
|
- lib/rails/source_annotation_extractor.rb
|
311
|
+
- lib/rails/tasks.rb
|
318
312
|
- lib/rails/tasks/annotations.rake
|
319
313
|
- lib/rails/tasks/documentation.rake
|
320
314
|
- lib/rails/tasks/engine.rake
|
@@ -325,7 +319,6 @@ files:
|
|
325
319
|
- lib/rails/tasks/routes.rake
|
326
320
|
- lib/rails/tasks/statistics.rake
|
327
321
|
- lib/rails/tasks/tmp.rake
|
328
|
-
- lib/rails/tasks.rb
|
329
322
|
- lib/rails/templates/layouts/application.html.erb
|
330
323
|
- lib/rails/templates/rails/info/properties.html.erb
|
331
324
|
- lib/rails/templates/rails/info/routes.html.erb
|
@@ -339,35 +332,30 @@ files:
|
|
339
332
|
- lib/rails/test_unit/testing.rake
|
340
333
|
- lib/rails/version.rb
|
341
334
|
- lib/rails/welcome_controller.rb
|
342
|
-
- lib/rails.rb
|
343
|
-
- lib/rails/generators/rails/generator/templates/templates/.empty_directory
|
344
|
-
- lib/rails/generators/rails/plugin/templates/app/mailers/.empty_directory
|
345
|
-
- lib/rails/generators/rails/plugin/templates/app/models/.empty_directory
|
346
335
|
homepage: http://www.rubyonrails.org
|
347
336
|
licenses:
|
348
337
|
- MIT
|
338
|
+
metadata: {}
|
349
339
|
post_install_message:
|
350
340
|
rdoc_options:
|
351
|
-
- --exclude
|
352
|
-
- .
|
341
|
+
- "--exclude"
|
342
|
+
- "."
|
353
343
|
require_paths:
|
354
344
|
- lib
|
355
345
|
required_ruby_version: !ruby/object:Gem::Requirement
|
356
|
-
none: false
|
357
346
|
requirements:
|
358
|
-
- -
|
347
|
+
- - ">="
|
359
348
|
- !ruby/object:Gem::Version
|
360
349
|
version: 1.9.3
|
361
350
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
362
|
-
none: false
|
363
351
|
requirements:
|
364
|
-
- -
|
352
|
+
- - ">"
|
365
353
|
- !ruby/object:Gem::Version
|
366
|
-
version:
|
354
|
+
version: 1.3.1
|
367
355
|
requirements: []
|
368
356
|
rubyforge_project:
|
369
|
-
rubygems_version:
|
357
|
+
rubygems_version: 2.2.2
|
370
358
|
signing_key:
|
371
|
-
specification_version:
|
359
|
+
specification_version: 4
|
372
360
|
summary: Tools for creating, working with, and running Rails applications.
|
373
361
|
test_files: []
|