morpheus 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.rvmrc +1 -0
- data/Gemfile +21 -0
- data/Gemfile.lock +134 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +44 -0
- data/Rakefile +48 -0
- data/VERSION +1 -0
- data/autotest/discover.rb +7 -0
- data/lib/ext/typhoeus.rb +37 -0
- data/lib/morpheus/associations/association.rb +110 -0
- data/lib/morpheus/associations/belongs_to_association.rb +45 -0
- data/lib/morpheus/associations/has_many_association.rb +70 -0
- data/lib/morpheus/associations/has_one_association.rb +46 -0
- data/lib/morpheus/base.rb +66 -0
- data/lib/morpheus/client/associations.rb +47 -0
- data/lib/morpheus/client/inflections.rb +3 -0
- data/lib/morpheus/client/log_subscriber.rb +64 -0
- data/lib/morpheus/client/railtie.rb +25 -0
- data/lib/morpheus/configuration.rb +49 -0
- data/lib/morpheus/errors.rb +32 -0
- data/lib/morpheus/filter.rb +18 -0
- data/lib/morpheus/mixins/associations.rb +55 -0
- data/lib/morpheus/mixins/attributes.rb +133 -0
- data/lib/morpheus/mixins/conversion.rb +21 -0
- data/lib/morpheus/mixins/filtering.rb +18 -0
- data/lib/morpheus/mixins/finders.rb +58 -0
- data/lib/morpheus/mixins/introspection.rb +25 -0
- data/lib/morpheus/mixins/persistence.rb +46 -0
- data/lib/morpheus/mixins/reflections.rb +24 -0
- data/lib/morpheus/mixins/request_handling.rb +34 -0
- data/lib/morpheus/mixins/response_parsing.rb +27 -0
- data/lib/morpheus/mixins/url_support.rb +36 -0
- data/lib/morpheus/mock.rb +66 -0
- data/lib/morpheus/reflection.rb +22 -0
- data/lib/morpheus/relation.rb +57 -0
- data/lib/morpheus/request.rb +41 -0
- data/lib/morpheus/request_cache.rb +18 -0
- data/lib/morpheus/request_queue.rb +44 -0
- data/lib/morpheus/response.rb +24 -0
- data/lib/morpheus/response_parser.rb +80 -0
- data/lib/morpheus/type_caster.rb +80 -0
- data/lib/morpheus/url_builder.rb +52 -0
- data/lib/morpheus.rb +64 -0
- data/morpheus.gemspec +191 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/purchase.rb +3 -0
- data/spec/dummy/app/resources/attendee.rb +2 -0
- data/spec/dummy/app/resources/author.rb +5 -0
- data/spec/dummy/app/resources/automobile.rb +6 -0
- data/spec/dummy/app/resources/book.rb +5 -0
- data/spec/dummy/app/resources/conference.rb +3 -0
- data/spec/dummy/app/resources/dog.rb +10 -0
- data/spec/dummy/app/resources/item.rb +5 -0
- data/spec/dummy/app/resources/meeting.rb +7 -0
- data/spec/dummy/app/resources/speaker.rb +3 -0
- data/spec/dummy/app/resources/state.rb +5 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config/application.rb +45 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +22 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +26 -0
- data/spec/dummy/config/environments/production.rb +49 -0
- data/spec/dummy/config/environments/test.rb +35 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/morpheus.rb +3 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +58 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/migrate/20110605002144_create_purchases.rb +13 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/stylesheets/.gitkeep +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/morpheus/associations/association_spec.rb +44 -0
- data/spec/morpheus/associations/belongs_to_association_spec.rb +5 -0
- data/spec/morpheus/associations/has_many_association_spec.rb +17 -0
- data/spec/morpheus/associations/has_one_association_spec.rb +5 -0
- data/spec/morpheus/base_spec.rb +126 -0
- data/spec/morpheus/client/associations_spec.rb +44 -0
- data/spec/morpheus/configuration_spec.rb +136 -0
- data/spec/morpheus/mixins/associations_spec.rb +141 -0
- data/spec/morpheus/mixins/attributes_spec.rb +99 -0
- data/spec/morpheus/mixins/conversion_spec.rb +76 -0
- data/spec/morpheus/mixins/finders_spec.rb +255 -0
- data/spec/morpheus/mixins/introspection_spec.rb +154 -0
- data/spec/morpheus/mixins/persistence_spec.rb +161 -0
- data/spec/morpheus/mixins/reflection_spec.rb +100 -0
- data/spec/morpheus/mixins/response_parsing_spec.rb +5 -0
- data/spec/morpheus/mock_spec.rb +133 -0
- data/spec/morpheus/relation_spec.rb +71 -0
- data/spec/morpheus/request_cache_spec.rb +5 -0
- data/spec/morpheus/request_spec.rb +5 -0
- data/spec/morpheus/response_spec.rb +73 -0
- data/spec/morpheus/type_caster_spec.rb +343 -0
- data/spec/shared/active_model_lint_test.rb +14 -0
- data/spec/spec_helper.rb +32 -0
- data/spec/support/configuration.rb +26 -0
- metadata +427 -0
data/morpheus.gemspec
ADDED
@@ -0,0 +1,191 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "morpheus"
|
8
|
+
s.version = "0.3.4"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Ryan Moran"]
|
12
|
+
s.date = "2011-12-07"
|
13
|
+
s.description = "RESTful API Client"
|
14
|
+
s.email = "ryan.moran@revolutionprep.com"
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE.txt",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".rvmrc",
|
21
|
+
"Gemfile",
|
22
|
+
"Gemfile.lock",
|
23
|
+
"LICENSE.txt",
|
24
|
+
"README.rdoc",
|
25
|
+
"Rakefile",
|
26
|
+
"VERSION",
|
27
|
+
"autotest/discover.rb",
|
28
|
+
"lib/ext/typhoeus.rb",
|
29
|
+
"lib/morpheus.rb",
|
30
|
+
"lib/morpheus/associations/association.rb",
|
31
|
+
"lib/morpheus/associations/belongs_to_association.rb",
|
32
|
+
"lib/morpheus/associations/has_many_association.rb",
|
33
|
+
"lib/morpheus/associations/has_one_association.rb",
|
34
|
+
"lib/morpheus/base.rb",
|
35
|
+
"lib/morpheus/client/associations.rb",
|
36
|
+
"lib/morpheus/client/inflections.rb",
|
37
|
+
"lib/morpheus/client/log_subscriber.rb",
|
38
|
+
"lib/morpheus/client/railtie.rb",
|
39
|
+
"lib/morpheus/configuration.rb",
|
40
|
+
"lib/morpheus/errors.rb",
|
41
|
+
"lib/morpheus/filter.rb",
|
42
|
+
"lib/morpheus/mixins/associations.rb",
|
43
|
+
"lib/morpheus/mixins/attributes.rb",
|
44
|
+
"lib/morpheus/mixins/conversion.rb",
|
45
|
+
"lib/morpheus/mixins/filtering.rb",
|
46
|
+
"lib/morpheus/mixins/finders.rb",
|
47
|
+
"lib/morpheus/mixins/introspection.rb",
|
48
|
+
"lib/morpheus/mixins/persistence.rb",
|
49
|
+
"lib/morpheus/mixins/reflections.rb",
|
50
|
+
"lib/morpheus/mixins/request_handling.rb",
|
51
|
+
"lib/morpheus/mixins/response_parsing.rb",
|
52
|
+
"lib/morpheus/mixins/url_support.rb",
|
53
|
+
"lib/morpheus/mock.rb",
|
54
|
+
"lib/morpheus/reflection.rb",
|
55
|
+
"lib/morpheus/relation.rb",
|
56
|
+
"lib/morpheus/request.rb",
|
57
|
+
"lib/morpheus/request_cache.rb",
|
58
|
+
"lib/morpheus/request_queue.rb",
|
59
|
+
"lib/morpheus/response.rb",
|
60
|
+
"lib/morpheus/response_parser.rb",
|
61
|
+
"lib/morpheus/type_caster.rb",
|
62
|
+
"lib/morpheus/url_builder.rb",
|
63
|
+
"morpheus.gemspec",
|
64
|
+
"spec/dummy/Rakefile",
|
65
|
+
"spec/dummy/app/controllers/application_controller.rb",
|
66
|
+
"spec/dummy/app/helpers/application_helper.rb",
|
67
|
+
"spec/dummy/app/models/purchase.rb",
|
68
|
+
"spec/dummy/app/resources/attendee.rb",
|
69
|
+
"spec/dummy/app/resources/author.rb",
|
70
|
+
"spec/dummy/app/resources/automobile.rb",
|
71
|
+
"spec/dummy/app/resources/book.rb",
|
72
|
+
"spec/dummy/app/resources/conference.rb",
|
73
|
+
"spec/dummy/app/resources/dog.rb",
|
74
|
+
"spec/dummy/app/resources/item.rb",
|
75
|
+
"spec/dummy/app/resources/meeting.rb",
|
76
|
+
"spec/dummy/app/resources/speaker.rb",
|
77
|
+
"spec/dummy/app/resources/state.rb",
|
78
|
+
"spec/dummy/app/views/layouts/application.html.erb",
|
79
|
+
"spec/dummy/config.ru",
|
80
|
+
"spec/dummy/config/application.rb",
|
81
|
+
"spec/dummy/config/boot.rb",
|
82
|
+
"spec/dummy/config/database.yml",
|
83
|
+
"spec/dummy/config/environment.rb",
|
84
|
+
"spec/dummy/config/environments/development.rb",
|
85
|
+
"spec/dummy/config/environments/production.rb",
|
86
|
+
"spec/dummy/config/environments/test.rb",
|
87
|
+
"spec/dummy/config/initializers/backtrace_silencers.rb",
|
88
|
+
"spec/dummy/config/initializers/inflections.rb",
|
89
|
+
"spec/dummy/config/initializers/mime_types.rb",
|
90
|
+
"spec/dummy/config/initializers/morpheus.rb",
|
91
|
+
"spec/dummy/config/initializers/secret_token.rb",
|
92
|
+
"spec/dummy/config/initializers/session_store.rb",
|
93
|
+
"spec/dummy/config/locales/en.yml",
|
94
|
+
"spec/dummy/config/routes.rb",
|
95
|
+
"spec/dummy/db/migrate/20110605002144_create_purchases.rb",
|
96
|
+
"spec/dummy/db/test.sqlite3",
|
97
|
+
"spec/dummy/public/404.html",
|
98
|
+
"spec/dummy/public/422.html",
|
99
|
+
"spec/dummy/public/500.html",
|
100
|
+
"spec/dummy/public/favicon.ico",
|
101
|
+
"spec/dummy/public/stylesheets/.gitkeep",
|
102
|
+
"spec/dummy/script/rails",
|
103
|
+
"spec/morpheus/associations/association_spec.rb",
|
104
|
+
"spec/morpheus/associations/belongs_to_association_spec.rb",
|
105
|
+
"spec/morpheus/associations/has_many_association_spec.rb",
|
106
|
+
"spec/morpheus/associations/has_one_association_spec.rb",
|
107
|
+
"spec/morpheus/base_spec.rb",
|
108
|
+
"spec/morpheus/client/associations_spec.rb",
|
109
|
+
"spec/morpheus/configuration_spec.rb",
|
110
|
+
"spec/morpheus/mixins/associations_spec.rb",
|
111
|
+
"spec/morpheus/mixins/attributes_spec.rb",
|
112
|
+
"spec/morpheus/mixins/conversion_spec.rb",
|
113
|
+
"spec/morpheus/mixins/finders_spec.rb",
|
114
|
+
"spec/morpheus/mixins/introspection_spec.rb",
|
115
|
+
"spec/morpheus/mixins/persistence_spec.rb",
|
116
|
+
"spec/morpheus/mixins/reflection_spec.rb",
|
117
|
+
"spec/morpheus/mixins/response_parsing_spec.rb",
|
118
|
+
"spec/morpheus/mock_spec.rb",
|
119
|
+
"spec/morpheus/relation_spec.rb",
|
120
|
+
"spec/morpheus/request_cache_spec.rb",
|
121
|
+
"spec/morpheus/request_spec.rb",
|
122
|
+
"spec/morpheus/response_spec.rb",
|
123
|
+
"spec/morpheus/type_caster_spec.rb",
|
124
|
+
"spec/shared/active_model_lint_test.rb",
|
125
|
+
"spec/spec_helper.rb",
|
126
|
+
"spec/support/configuration.rb"
|
127
|
+
]
|
128
|
+
s.homepage = "https://github.com/RevolutionPrep/morpheus"
|
129
|
+
s.licenses = ["MIT"]
|
130
|
+
s.require_paths = ["lib"]
|
131
|
+
s.rubygems_version = "1.8.11"
|
132
|
+
s.summary = "RESTful API Client"
|
133
|
+
|
134
|
+
if s.respond_to? :specification_version then
|
135
|
+
s.specification_version = 3
|
136
|
+
|
137
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
138
|
+
s.add_runtime_dependency(%q<yajl-ruby>, ["~> 0.8.2"])
|
139
|
+
s.add_runtime_dependency(%q<typhoeus>, ["~> 0.2.4"])
|
140
|
+
s.add_runtime_dependency(%q<activemodel>, ["~> 3.0.0"])
|
141
|
+
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.0"])
|
142
|
+
s.add_runtime_dependency(%q<i18n>, ["~> 0.5.0"])
|
143
|
+
s.add_development_dependency(%q<rails>, ["= 3.0.7"])
|
144
|
+
s.add_development_dependency(%q<sqlite3>, ["= 1.3.3"])
|
145
|
+
s.add_development_dependency(%q<rspec-rails>, ["= 2.6.0"])
|
146
|
+
s.add_development_dependency(%q<yard>, ["= 0.6.8"])
|
147
|
+
s.add_development_dependency(%q<jeweler>, ["= 1.6.0"])
|
148
|
+
s.add_development_dependency(%q<rcov>, ["= 0.9.9"])
|
149
|
+
s.add_development_dependency(%q<autotest>, ["= 4.4.6"])
|
150
|
+
s.add_development_dependency(%q<ZenTest>, ["= 4.6.2"])
|
151
|
+
s.add_development_dependency(%q<rocco>, ["= 0.7.0"])
|
152
|
+
s.add_development_dependency(%q<awesome_print>, ["= 0.4.0"])
|
153
|
+
s.add_development_dependency(%q<pry>, ["= 0.9.3"])
|
154
|
+
else
|
155
|
+
s.add_dependency(%q<yajl-ruby>, ["~> 0.8.2"])
|
156
|
+
s.add_dependency(%q<typhoeus>, ["~> 0.2.4"])
|
157
|
+
s.add_dependency(%q<activemodel>, ["~> 3.0.0"])
|
158
|
+
s.add_dependency(%q<activesupport>, ["~> 3.0.0"])
|
159
|
+
s.add_dependency(%q<i18n>, ["~> 0.5.0"])
|
160
|
+
s.add_dependency(%q<rails>, ["= 3.0.7"])
|
161
|
+
s.add_dependency(%q<sqlite3>, ["= 1.3.3"])
|
162
|
+
s.add_dependency(%q<rspec-rails>, ["= 2.6.0"])
|
163
|
+
s.add_dependency(%q<yard>, ["= 0.6.8"])
|
164
|
+
s.add_dependency(%q<jeweler>, ["= 1.6.0"])
|
165
|
+
s.add_dependency(%q<rcov>, ["= 0.9.9"])
|
166
|
+
s.add_dependency(%q<autotest>, ["= 4.4.6"])
|
167
|
+
s.add_dependency(%q<ZenTest>, ["= 4.6.2"])
|
168
|
+
s.add_dependency(%q<rocco>, ["= 0.7.0"])
|
169
|
+
s.add_dependency(%q<awesome_print>, ["= 0.4.0"])
|
170
|
+
s.add_dependency(%q<pry>, ["= 0.9.3"])
|
171
|
+
end
|
172
|
+
else
|
173
|
+
s.add_dependency(%q<yajl-ruby>, ["~> 0.8.2"])
|
174
|
+
s.add_dependency(%q<typhoeus>, ["~> 0.2.4"])
|
175
|
+
s.add_dependency(%q<activemodel>, ["~> 3.0.0"])
|
176
|
+
s.add_dependency(%q<activesupport>, ["~> 3.0.0"])
|
177
|
+
s.add_dependency(%q<i18n>, ["~> 0.5.0"])
|
178
|
+
s.add_dependency(%q<rails>, ["= 3.0.7"])
|
179
|
+
s.add_dependency(%q<sqlite3>, ["= 1.3.3"])
|
180
|
+
s.add_dependency(%q<rspec-rails>, ["= 2.6.0"])
|
181
|
+
s.add_dependency(%q<yard>, ["= 0.6.8"])
|
182
|
+
s.add_dependency(%q<jeweler>, ["= 1.6.0"])
|
183
|
+
s.add_dependency(%q<rcov>, ["= 0.9.9"])
|
184
|
+
s.add_dependency(%q<autotest>, ["= 4.4.6"])
|
185
|
+
s.add_dependency(%q<ZenTest>, ["= 4.6.2"])
|
186
|
+
s.add_dependency(%q<rocco>, ["= 0.7.0"])
|
187
|
+
s.add_dependency(%q<awesome_print>, ["= 0.4.0"])
|
188
|
+
s.add_dependency(%q<pry>, ["= 0.9.3"])
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
data/spec/dummy/Rakefile
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
2
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
3
|
+
|
4
|
+
require File.expand_path('../config/application', __FILE__)
|
5
|
+
require 'rake'
|
6
|
+
|
7
|
+
Dummy::Application.load_tasks
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require "active_model/railtie"
|
4
|
+
require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_view/railtie"
|
7
|
+
require "action_mailer/railtie"
|
8
|
+
|
9
|
+
Bundler.require
|
10
|
+
require "morpheus"
|
11
|
+
|
12
|
+
module Dummy
|
13
|
+
class Application < Rails::Application
|
14
|
+
# Settings in config/environments/* take precedence over those specified here.
|
15
|
+
# Application configuration should go into files in config/initializers
|
16
|
+
# -- all .rb files in that directory are automatically loaded.
|
17
|
+
|
18
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
19
|
+
config.autoload_paths += %W(#{config.root}/resources)
|
20
|
+
|
21
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
22
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
23
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
24
|
+
|
25
|
+
# Activate observers that should always be running.
|
26
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
27
|
+
|
28
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
29
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
30
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
31
|
+
|
32
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
33
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
34
|
+
# config.i18n.default_locale = :de
|
35
|
+
|
36
|
+
# JavaScript files you want as :defaults (application.js is always included).
|
37
|
+
# config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
|
38
|
+
|
39
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
40
|
+
config.encoding = "utf-8"
|
41
|
+
|
42
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
43
|
+
config.filter_parameters += [:password]
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
development:
|
4
|
+
adapter: sqlite3
|
5
|
+
database: db/development.sqlite3
|
6
|
+
pool: 5
|
7
|
+
timeout: 5000
|
8
|
+
|
9
|
+
# Warning: The database defined as "test" will be erased and
|
10
|
+
# re-generated from your development database when you run "rake".
|
11
|
+
# Do not set this db to the same as development or production.
|
12
|
+
test:
|
13
|
+
adapter: sqlite3
|
14
|
+
database: db/test.sqlite3
|
15
|
+
pool: 5
|
16
|
+
timeout: 5000
|
17
|
+
|
18
|
+
production:
|
19
|
+
adapter: sqlite3
|
20
|
+
database: db/production.sqlite3
|
21
|
+
pool: 5
|
22
|
+
timeout: 5000
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the webserver when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
10
|
+
config.whiny_nils = true
|
11
|
+
|
12
|
+
# Show full error reports and disable caching
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_view.debug_rjs = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Don't care if the mailer can't send
|
18
|
+
config.action_mailer.raise_delivery_errors = false
|
19
|
+
|
20
|
+
# Print deprecation notices to the Rails logger
|
21
|
+
config.active_support.deprecation = :log
|
22
|
+
|
23
|
+
# Only use best-standards-support built into browsers
|
24
|
+
config.action_dispatch.best_standards_support = :builtin
|
25
|
+
end
|
26
|
+
|
@@ -0,0 +1,49 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The production environment is meant for finished, "live" apps.
|
5
|
+
# Code is not reloaded between requests
|
6
|
+
config.cache_classes = true
|
7
|
+
|
8
|
+
# Full error reports are disabled and caching is turned on
|
9
|
+
config.consider_all_requests_local = false
|
10
|
+
config.action_controller.perform_caching = true
|
11
|
+
|
12
|
+
# Specifies the header that your server uses for sending files
|
13
|
+
config.action_dispatch.x_sendfile_header = "X-Sendfile"
|
14
|
+
|
15
|
+
# For nginx:
|
16
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
|
17
|
+
|
18
|
+
# If you have no front-end server that supports something like X-Sendfile,
|
19
|
+
# just comment this out and Rails will serve the files
|
20
|
+
|
21
|
+
# See everything in the log (default is :info)
|
22
|
+
# config.log_level = :debug
|
23
|
+
|
24
|
+
# Use a different logger for distributed setups
|
25
|
+
# config.logger = SyslogLogger.new
|
26
|
+
|
27
|
+
# Use a different cache store in production
|
28
|
+
# config.cache_store = :mem_cache_store
|
29
|
+
|
30
|
+
# Disable Rails's static asset server
|
31
|
+
# In production, Apache or nginx will already do this
|
32
|
+
config.serve_static_assets = false
|
33
|
+
|
34
|
+
# Enable serving of images, stylesheets, and javascripts from an asset server
|
35
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
36
|
+
|
37
|
+
# Disable delivery errors, bad email addresses will be ignored
|
38
|
+
# config.action_mailer.raise_delivery_errors = false
|
39
|
+
|
40
|
+
# Enable threaded mode
|
41
|
+
# config.threadsafe!
|
42
|
+
|
43
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
44
|
+
# the I18n.default_locale when a translation can not be found)
|
45
|
+
config.i18n.fallbacks = true
|
46
|
+
|
47
|
+
# Send deprecation notices to registered listeners
|
48
|
+
config.active_support.deprecation = :notify
|
49
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Log error messages when you accidentally call methods on nil.
|
11
|
+
config.whiny_nils = true
|
12
|
+
|
13
|
+
# Show full error reports and disable caching
|
14
|
+
config.consider_all_requests_local = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Raise exceptions instead of rendering exception templates
|
18
|
+
config.action_dispatch.show_exceptions = false
|
19
|
+
|
20
|
+
# Disable request forgery protection in test environment
|
21
|
+
config.action_controller.allow_forgery_protection = false
|
22
|
+
|
23
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
24
|
+
# The :test delivery method accumulates sent emails in the
|
25
|
+
# ActionMailer::Base.deliveries array.
|
26
|
+
config.action_mailer.delivery_method = :test
|
27
|
+
|
28
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
29
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
30
|
+
# like if you have constraints or database-specific column types
|
31
|
+
# config.active_record.schema_format = :sql
|
32
|
+
|
33
|
+
# Print deprecation notices to the stderr
|
34
|
+
config.active_support.deprecation = :stderr
|
35
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = 'b52cb85818a8da55762ad4b6fea5fd3ce1af759ef2956dd0a519433e7fcd699b342b0cb6d548ff86d3f32ebe10483b3fa7d1dd009b05c54b9816b3d920a825e3'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
@@ -0,0 +1,58 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
# The priority is based upon order of creation:
|
3
|
+
# first created -> highest priority.
|
4
|
+
|
5
|
+
# Sample of regular route:
|
6
|
+
# match 'products/:id' => 'catalog#view'
|
7
|
+
# Keep in mind you can assign values other than :controller and :action
|
8
|
+
|
9
|
+
# Sample of named route:
|
10
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
11
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
12
|
+
|
13
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
14
|
+
# resources :products
|
15
|
+
|
16
|
+
# Sample resource route with options:
|
17
|
+
# resources :products do
|
18
|
+
# member do
|
19
|
+
# get 'short'
|
20
|
+
# post 'toggle'
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
# collection do
|
24
|
+
# get 'sold'
|
25
|
+
# end
|
26
|
+
# end
|
27
|
+
|
28
|
+
# Sample resource route with sub-resources:
|
29
|
+
# resources :products do
|
30
|
+
# resources :comments, :sales
|
31
|
+
# resource :seller
|
32
|
+
# end
|
33
|
+
|
34
|
+
# Sample resource route with more complex sub-resources
|
35
|
+
# resources :products do
|
36
|
+
# resources :comments
|
37
|
+
# resources :sales do
|
38
|
+
# get 'recent', :on => :collection
|
39
|
+
# end
|
40
|
+
# end
|
41
|
+
|
42
|
+
# Sample resource route within a namespace:
|
43
|
+
# namespace :admin do
|
44
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
45
|
+
# # (app/controllers/admin/products_controller.rb)
|
46
|
+
# resources :products
|
47
|
+
# end
|
48
|
+
|
49
|
+
# You can have the root of your site routed with "root"
|
50
|
+
# just remember to delete public/index.html.
|
51
|
+
# root :to => "welcome#index"
|
52
|
+
|
53
|
+
# See how all your routes lay out with "rake routes"
|
54
|
+
|
55
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
56
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
57
|
+
# match ':controller(/:action(/:id(.:format)))'
|
58
|
+
end
|
Binary file
|