Xwitter 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.babelrc +26 -0
- data/.gitignore +19 -0
- data/.postcssrc.yml +3 -0
- data/.ruby-version +1 -0
- data/Gemfile +44 -0
- data/Gemfile.lock +247 -0
- data/LICENSE.txt +21 -0
- data/README.md +35 -0
- data/Rakefile +7 -0
- data/Schemafile +40 -0
- data/Xwitter.gemspec +28 -0
- data/app/assets/config/manifest.js +3 -0
- data/app/assets/images/.keep +0 -0
- data/app/assets/javascripts/application.js +16 -0
- data/app/assets/javascripts/cable.js +13 -0
- data/app/assets/javascripts/channels/.keep +0 -0
- data/app/assets/javascripts/messages.coffee +3 -0
- data/app/assets/javascripts/users.coffee +3 -0
- data/app/assets/stylesheets/application.css +15 -0
- data/app/assets/stylesheets/messages.scss +3 -0
- data/app/assets/stylesheets/scaffolds.scss +84 -0
- data/app/assets/stylesheets/users.scss +3 -0
- data/app/channels/application_cable/channel.rb +4 -0
- data/app/channels/application_cable/connection.rb +4 -0
- data/app/controllers/application_controller.rb +2 -0
- data/app/controllers/concerns/.keep +0 -0
- data/app/controllers/messages_controller.rb +79 -0
- data/app/controllers/profiles_controller.rb +48 -0
- data/app/helpers/application_helper.rb +2 -0
- data/app/helpers/messages_helper.rb +2 -0
- data/app/helpers/users_helper.rb +2 -0
- data/app/javascript/components/.gitkeep +0 -0
- data/app/javascript/packs/application.js +14 -0
- data/app/javascript/packs/application.scss +1 -0
- data/app/javascript/packs/hello_react.jsx +26 -0
- data/app/javascript/packs/hello_typescript.ts +4 -0
- data/app/javascript/packs/server_rendering.js +5 -0
- data/app/jobs/application_job.rb +2 -0
- data/app/mailers/application_mailer.rb +4 -0
- data/app/models/application_record.rb +3 -0
- data/app/models/concerns/.keep +0 -0
- data/app/models/message.rb +4 -0
- data/app/models/user.rb +6 -0
- data/app/views/layouts/application.html.slim +16 -0
- data/app/views/layouts/mailer.html.erb +13 -0
- data/app/views/layouts/mailer.text.erb +1 -0
- data/app/views/messages/_form.html.slim +12 -0
- data/app/views/messages/_index.html.slim +12 -0
- data/app/views/messages/_message.json.jbuilder +2 -0
- data/app/views/messages/_show.html.slim +11 -0
- data/app/views/messages/edit.html.slim +8 -0
- data/app/views/messages/index.html.slim +20 -0
- data/app/views/messages/index.json.jbuilder +1 -0
- data/app/views/messages/new.html.slim +5 -0
- data/app/views/messages/show.html.slim +9 -0
- data/app/views/messages/show.json.jbuilder +1 -0
- data/app/views/profiles/_form.html.slim +15 -0
- data/app/views/profiles/_user.json.jbuilder +2 -0
- data/app/views/profiles/edit.html.slim +5 -0
- data/app/views/profiles/show.html.slim +8 -0
- data/app/views/profiles/show.json.jbuilder +1 -0
- data/app/views/users/confirmations/new.html.erb +16 -0
- data/app/views/users/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/users/mailer/email_changed.html.erb +7 -0
- data/app/views/users/mailer/password_change.html.erb +3 -0
- data/app/views/users/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/users/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/users/passwords/edit.html.erb +25 -0
- data/app/views/users/passwords/new.html.erb +16 -0
- data/app/views/users/registrations/edit.html.erb +43 -0
- data/app/views/users/registrations/new.html.erb +29 -0
- data/app/views/users/sessions/new.html.slim +16 -0
- data/app/views/users/shared/_links.html.slim +21 -0
- data/app/views/users/unlocks/new.html.erb +16 -0
- data/bin/bundle +3 -0
- data/bin/console +14 -0
- data/bin/rails +9 -0
- data/bin/rake +9 -0
- data/bin/setup +8 -0
- data/bin/spring +17 -0
- data/bin/update +31 -0
- data/bin/webpack +15 -0
- data/bin/webpack-dev-server +15 -0
- data/bin/yarn +11 -0
- data/config/application.rb +19 -0
- data/config/boot.rb +4 -0
- data/config/cable.yml +10 -0
- data/config/credentials.yml.enc +1 -0
- data/config/database.yml +26 -0
- data/config/environment.rb +5 -0
- data/config/environments/development.rb +63 -0
- data/config/environments/production.rb +96 -0
- data/config/environments/test.rb +46 -0
- data/config/initializers/application_controller_renderer.rb +8 -0
- data/config/initializers/assets.rb +14 -0
- data/config/initializers/backtrace_silencers.rb +7 -0
- data/config/initializers/content_security_policy.rb +25 -0
- data/config/initializers/cookies_serializer.rb +5 -0
- data/config/initializers/devise.rb +290 -0
- data/config/initializers/filter_parameter_logging.rb +4 -0
- data/config/initializers/inflections.rb +16 -0
- data/config/initializers/mime_types.rb +4 -0
- data/config/initializers/wrap_parameters.rb +14 -0
- data/config/locales/devise.en.yml +64 -0
- data/config/locales/en.yml +33 -0
- data/config/puma.rb +34 -0
- data/config/routes.rb +7 -0
- data/config/spring.rb +6 -0
- data/config/storage.yml +34 -0
- data/config/webpack/development.js +5 -0
- data/config/webpack/environment.js +5 -0
- data/config/webpack/loaders/typescript.js +6 -0
- data/config/webpack/production.js +5 -0
- data/config/webpack/test.js +5 -0
- data/config/webpacker.yml +71 -0
- data/config.ru +5 -0
- data/db/seeds.rb +7 -0
- data/lib/Xwitter/version.rb +3 -0
- data/lib/Xwitter.rb +6 -0
- data/lib/assets/.keep +0 -0
- data/lib/tasks/.keep +0 -0
- data/log/.keep +0 -0
- data/package.json +20 -0
- data/public/404.html +67 -0
- data/public/422.html +67 -0
- data/public/500.html +66 -0
- data/public/apple-touch-icon-precomposed.png +0 -0
- data/public/apple-touch-icon.png +0 -0
- data/public/favicon.ico +0 -0
- data/public/robots.txt +1 -0
- data/storage/.keep +0 -0
- data/tsconfig.json +20 -0
- data/vendor/.keep +0 -0
- data/yarn.lock +6051 -0
- metadata +206 -0
@@ -0,0 +1,290 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Use this hook to configure devise mailer, warden hooks and so forth.
|
4
|
+
# Many of these configuration options can be set straight in your model.
|
5
|
+
Devise.setup do |config|
|
6
|
+
# The secret key used by Devise. Devise uses this key to generate
|
7
|
+
# random tokens. Changing this key will render invalid all existing
|
8
|
+
# confirmation, reset password and unlock tokens in the database.
|
9
|
+
# Devise will use the `secret_key_base` as its `secret_key`
|
10
|
+
# by default. You can change it below and use your own secret key.
|
11
|
+
# config.secret_key = '08682ec90329836473f88204208056c67fe28ea74e51dcf06a078e7c1a45d9f20cdf4b231ac464aa7891cea4df95cfa1aec33ecfcdf790a580896362a622ef55'
|
12
|
+
|
13
|
+
# ==> Controller configuration
|
14
|
+
# Configure the parent class to the devise controllers.
|
15
|
+
# config.parent_controller = 'DeviseController'
|
16
|
+
|
17
|
+
# ==> Mailer Configuration
|
18
|
+
# Configure the e-mail address which will be shown in Devise::Mailer,
|
19
|
+
# note that it will be overwritten if you use your own mailer class
|
20
|
+
# with default "from" parameter.
|
21
|
+
config.mailer_sender = 'please-change-me-at-config-initializers-devise@example.com'
|
22
|
+
|
23
|
+
# Configure the class responsible to send e-mails.
|
24
|
+
# config.mailer = 'Devise::Mailer'
|
25
|
+
|
26
|
+
# Configure the parent class responsible to send e-mails.
|
27
|
+
# config.parent_mailer = 'ActionMailer::Base'
|
28
|
+
|
29
|
+
# ==> ORM configuration
|
30
|
+
# Load and configure the ORM. Supports :active_record (default) and
|
31
|
+
# :mongoid (bson_ext recommended) by default. Other ORMs may be
|
32
|
+
# available as additional gems.
|
33
|
+
require 'devise/orm/active_record'
|
34
|
+
|
35
|
+
# ==> Configuration for any authentication mechanism
|
36
|
+
# Configure which keys are used when authenticating a user. The default is
|
37
|
+
# just :email. You can configure it to use [:username, :subdomain], so for
|
38
|
+
# authenticating a user, both parameters are required. Remember that those
|
39
|
+
# parameters are used only when authenticating and not when retrieving from
|
40
|
+
# session. If you need permissions, you should implement that in a before filter.
|
41
|
+
# You can also supply a hash where the value is a boolean determining whether
|
42
|
+
# or not authentication should be aborted when the value is not present.
|
43
|
+
# config.authentication_keys = [:email]
|
44
|
+
|
45
|
+
# Configure parameters from the request object used for authentication. Each entry
|
46
|
+
# given should be a request method and it will automatically be passed to the
|
47
|
+
# find_for_authentication method and considered in your model lookup. For instance,
|
48
|
+
# if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
|
49
|
+
# The same considerations mentioned for authentication_keys also apply to request_keys.
|
50
|
+
# config.request_keys = []
|
51
|
+
|
52
|
+
# Configure which authentication keys should be case-insensitive.
|
53
|
+
# These keys will be downcased upon creating or modifying a user and when used
|
54
|
+
# to authenticate or find a user. Default is :email.
|
55
|
+
config.case_insensitive_keys = [:email]
|
56
|
+
|
57
|
+
# Configure which authentication keys should have whitespace stripped.
|
58
|
+
# These keys will have whitespace before and after removed upon creating or
|
59
|
+
# modifying a user and when used to authenticate or find a user. Default is :email.
|
60
|
+
config.strip_whitespace_keys = [:email]
|
61
|
+
|
62
|
+
# Tell if authentication through request.params is enabled. True by default.
|
63
|
+
# It can be set to an array that will enable params authentication only for the
|
64
|
+
# given strategies, for example, `config.params_authenticatable = [:database]` will
|
65
|
+
# enable it only for database (email + password) authentication.
|
66
|
+
# config.params_authenticatable = true
|
67
|
+
|
68
|
+
# Tell if authentication through HTTP Auth is enabled. False by default.
|
69
|
+
# It can be set to an array that will enable http authentication only for the
|
70
|
+
# given strategies, for example, `config.http_authenticatable = [:database]` will
|
71
|
+
# enable it only for database authentication. The supported strategies are:
|
72
|
+
# :database = Support basic authentication with authentication key + password
|
73
|
+
# config.http_authenticatable = false
|
74
|
+
|
75
|
+
# If 401 status code should be returned for AJAX requests. True by default.
|
76
|
+
# config.http_authenticatable_on_xhr = true
|
77
|
+
|
78
|
+
# The realm used in Http Basic Authentication. 'Application' by default.
|
79
|
+
# config.http_authentication_realm = 'Application'
|
80
|
+
|
81
|
+
# It will change confirmation, password recovery and other workflows
|
82
|
+
# to behave the same regardless if the e-mail provided was right or wrong.
|
83
|
+
# Does not affect registerable.
|
84
|
+
# config.paranoid = true
|
85
|
+
|
86
|
+
# By default Devise will store the user in session. You can skip storage for
|
87
|
+
# particular strategies by setting this option.
|
88
|
+
# Notice that if you are skipping storage for all authentication paths, you
|
89
|
+
# may want to disable generating routes to Devise's sessions controller by
|
90
|
+
# passing skip: :sessions to `devise_for` in your config/routes.rb
|
91
|
+
config.skip_session_storage = [:http_auth]
|
92
|
+
|
93
|
+
# By default, Devise cleans up the CSRF token on authentication to
|
94
|
+
# avoid CSRF token fixation attacks. This means that, when using AJAX
|
95
|
+
# requests for sign in and sign up, you need to get a new CSRF token
|
96
|
+
# from the server. You can disable this option at your own risk.
|
97
|
+
# config.clean_up_csrf_token_on_authentication = true
|
98
|
+
|
99
|
+
# When false, Devise will not attempt to reload routes on eager load.
|
100
|
+
# This can reduce the time taken to boot the app but if your application
|
101
|
+
# requires the Devise mappings to be loaded during boot time the application
|
102
|
+
# won't boot properly.
|
103
|
+
# config.reload_routes = true
|
104
|
+
|
105
|
+
# ==> Configuration for :database_authenticatable
|
106
|
+
# For bcrypt, this is the cost for hashing the password and defaults to 11. If
|
107
|
+
# using other algorithms, it sets how many times you want the password to be hashed.
|
108
|
+
#
|
109
|
+
# Limiting the stretches to just one in testing will increase the performance of
|
110
|
+
# your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
|
111
|
+
# a value less than 10 in other environments. Note that, for bcrypt (the default
|
112
|
+
# algorithm), the cost increases exponentially with the number of stretches (e.g.
|
113
|
+
# a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation).
|
114
|
+
config.stretches = Rails.env.test? ? 1 : 11
|
115
|
+
|
116
|
+
# Set up a pepper to generate the hashed password.
|
117
|
+
# config.pepper = '6b4cf8ec081017a1013d8a16563ef56a169524be5525f20ba9e863852680a980e02e997bf039df5494ce10ba91c94b9ce3452963d61fec44f24fd92ae89c8693'
|
118
|
+
|
119
|
+
# Send a notification to the original email when the user's email is changed.
|
120
|
+
# config.send_email_changed_notification = false
|
121
|
+
|
122
|
+
# Send a notification email when the user's password is changed.
|
123
|
+
# config.send_password_change_notification = false
|
124
|
+
|
125
|
+
# ==> Configuration for :confirmable
|
126
|
+
# A period that the user is allowed to access the website even without
|
127
|
+
# confirming their account. For instance, if set to 2.days, the user will be
|
128
|
+
# able to access the website for two days without confirming their account,
|
129
|
+
# access will be blocked just in the third day. Default is 0.days, meaning
|
130
|
+
# the user cannot access the website without confirming their account.
|
131
|
+
# config.allow_unconfirmed_access_for = 2.days
|
132
|
+
|
133
|
+
# A period that the user is allowed to confirm their account before their
|
134
|
+
# token becomes invalid. For example, if set to 3.days, the user can confirm
|
135
|
+
# their account within 3 days after the mail was sent, but on the fourth day
|
136
|
+
# their account can't be confirmed with the token any more.
|
137
|
+
# Default is nil, meaning there is no restriction on how long a user can take
|
138
|
+
# before confirming their account.
|
139
|
+
# config.confirm_within = 3.days
|
140
|
+
|
141
|
+
# If true, requires any email changes to be confirmed (exactly the same way as
|
142
|
+
# initial account confirmation) to be applied. Requires additional unconfirmed_email
|
143
|
+
# db field (see migrations). Until confirmed, new email is stored in
|
144
|
+
# unconfirmed_email column, and copied to email column on successful confirmation.
|
145
|
+
config.reconfirmable = true
|
146
|
+
|
147
|
+
# Defines which key will be used when confirming an account
|
148
|
+
# config.confirmation_keys = [:email]
|
149
|
+
|
150
|
+
# ==> Configuration for :rememberable
|
151
|
+
# The time the user will be remembered without asking for credentials again.
|
152
|
+
# config.remember_for = 2.weeks
|
153
|
+
|
154
|
+
# Invalidates all the remember me tokens when the user signs out.
|
155
|
+
config.expire_all_remember_me_on_sign_out = true
|
156
|
+
|
157
|
+
# If true, extends the user's remember period when remembered via cookie.
|
158
|
+
# config.extend_remember_period = false
|
159
|
+
|
160
|
+
# Options to be passed to the created cookie. For instance, you can set
|
161
|
+
# secure: true in order to force SSL only cookies.
|
162
|
+
# config.rememberable_options = {}
|
163
|
+
|
164
|
+
# ==> Configuration for :validatable
|
165
|
+
# Range for password length.
|
166
|
+
config.password_length = 6..128
|
167
|
+
|
168
|
+
# Email regex used to validate email formats. It simply asserts that
|
169
|
+
# one (and only one) @ exists in the given string. This is mainly
|
170
|
+
# to give user feedback and not to assert the e-mail validity.
|
171
|
+
config.email_regexp = /\A[^@\s]+@[^@\s]+\z/
|
172
|
+
|
173
|
+
# ==> Configuration for :timeoutable
|
174
|
+
# The time you want to timeout the user session without activity. After this
|
175
|
+
# time the user will be asked for credentials again. Default is 30 minutes.
|
176
|
+
# config.timeout_in = 30.minutes
|
177
|
+
|
178
|
+
# ==> Configuration for :lockable
|
179
|
+
# Defines which strategy will be used to lock an account.
|
180
|
+
# :failed_attempts = Locks an account after a number of failed attempts to sign in.
|
181
|
+
# :none = No lock strategy. You should handle locking by yourself.
|
182
|
+
# config.lock_strategy = :failed_attempts
|
183
|
+
|
184
|
+
# Defines which key will be used when locking and unlocking an account
|
185
|
+
# config.unlock_keys = [:email]
|
186
|
+
|
187
|
+
# Defines which strategy will be used to unlock an account.
|
188
|
+
# :email = Sends an unlock link to the user email
|
189
|
+
# :time = Re-enables login after a certain amount of time (see :unlock_in below)
|
190
|
+
# :both = Enables both strategies
|
191
|
+
# :none = No unlock strategy. You should handle unlocking by yourself.
|
192
|
+
# config.unlock_strategy = :both
|
193
|
+
|
194
|
+
# Number of authentication tries before locking an account if lock_strategy
|
195
|
+
# is failed attempts.
|
196
|
+
# config.maximum_attempts = 20
|
197
|
+
|
198
|
+
# Time interval to unlock the account if :time is enabled as unlock_strategy.
|
199
|
+
# config.unlock_in = 1.hour
|
200
|
+
|
201
|
+
# Warn on the last attempt before the account is locked.
|
202
|
+
# config.last_attempt_warning = true
|
203
|
+
|
204
|
+
# ==> Configuration for :recoverable
|
205
|
+
#
|
206
|
+
# Defines which key will be used when recovering the password for an account
|
207
|
+
# config.reset_password_keys = [:email]
|
208
|
+
|
209
|
+
# Time interval you can reset your password with a reset password key.
|
210
|
+
# Don't put a too small interval or your users won't have the time to
|
211
|
+
# change their passwords.
|
212
|
+
config.reset_password_within = 6.hours
|
213
|
+
|
214
|
+
# When set to false, does not sign a user in automatically after their password is
|
215
|
+
# reset. Defaults to true, so a user is signed in automatically after a reset.
|
216
|
+
# config.sign_in_after_reset_password = true
|
217
|
+
|
218
|
+
# ==> Configuration for :encryptable
|
219
|
+
# Allow you to use another hashing or encryption algorithm besides bcrypt (default).
|
220
|
+
# You can use :sha1, :sha512 or algorithms from others authentication tools as
|
221
|
+
# :clearance_sha1, :authlogic_sha512 (then you should set stretches above to 20
|
222
|
+
# for default behavior) and :restful_authentication_sha1 (then you should set
|
223
|
+
# stretches to 10, and copy REST_AUTH_SITE_KEY to pepper).
|
224
|
+
#
|
225
|
+
# Require the `devise-encryptable` gem when using anything other than bcrypt
|
226
|
+
# config.encryptor = :sha512
|
227
|
+
|
228
|
+
# ==> Scopes configuration
|
229
|
+
# Turn scoped views on. Before rendering "sessions/new", it will first check for
|
230
|
+
# "users/sessions/new". It's turned off by default because it's slower if you
|
231
|
+
# are using only default views.
|
232
|
+
config.scoped_views = true
|
233
|
+
|
234
|
+
# Configure the default scope given to Warden. By default it's the first
|
235
|
+
# devise role declared in your routes (usually :user).
|
236
|
+
# config.default_scope = :user
|
237
|
+
|
238
|
+
# Set this configuration to false if you want /users/sign_out to sign out
|
239
|
+
# only the current scope. By default, Devise signs out all scopes.
|
240
|
+
# config.sign_out_all_scopes = true
|
241
|
+
|
242
|
+
# ==> Navigation configuration
|
243
|
+
# Lists the formats that should be treated as navigational. Formats like
|
244
|
+
# :html, should redirect to the sign in page when the user does not have
|
245
|
+
# access, but formats like :xml or :json, should return 401.
|
246
|
+
#
|
247
|
+
# If you have any extra navigational formats, like :iphone or :mobile, you
|
248
|
+
# should add them to the navigational formats lists.
|
249
|
+
#
|
250
|
+
# The "*/*" below is required to match Internet Explorer requests.
|
251
|
+
# config.navigational_formats = ['*/*', :html]
|
252
|
+
|
253
|
+
# The default HTTP method used to sign out a resource. Default is :delete.
|
254
|
+
config.sign_out_via = :delete
|
255
|
+
|
256
|
+
# ==> OmniAuth
|
257
|
+
# Add a new OmniAuth provider. Check the wiki for more information on setting
|
258
|
+
# up on your models and hooks.
|
259
|
+
# config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo'
|
260
|
+
|
261
|
+
# ==> Warden configuration
|
262
|
+
# If you want to use other strategies, that are not supported by Devise, or
|
263
|
+
# change the failure app, you can configure them inside the config.warden block.
|
264
|
+
#
|
265
|
+
# config.warden do |manager|
|
266
|
+
# manager.intercept_401 = false
|
267
|
+
# manager.default_strategies(scope: :user).unshift :some_external_strategy
|
268
|
+
# end
|
269
|
+
|
270
|
+
# ==> Mountable engine configurations
|
271
|
+
# When using Devise inside an engine, let's call it `MyEngine`, and this engine
|
272
|
+
# is mountable, there are some extra configurations to be taken into account.
|
273
|
+
# The following options are available, assuming the engine is mounted as:
|
274
|
+
#
|
275
|
+
# mount MyEngine, at: '/my_engine'
|
276
|
+
#
|
277
|
+
# The router that invoked `devise_for`, in the example above, would be:
|
278
|
+
# config.router_name = :my_engine
|
279
|
+
#
|
280
|
+
# When using OmniAuth, Devise cannot automatically set OmniAuth path,
|
281
|
+
# so you need to do it manually. For the users scope, it would be:
|
282
|
+
# config.omniauth_path_prefix = '/my_engine/users/auth'
|
283
|
+
|
284
|
+
# ==> Turbolinks configuration
|
285
|
+
# If your app is using Turbolinks, Turbolinks::Controller needs to be included to make redirection work correctly:
|
286
|
+
#
|
287
|
+
# ActiveSupport.on_load(:devise_failure_app) do
|
288
|
+
# include Turbolinks::Controller
|
289
|
+
# end
|
290
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
10
|
+
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
13
|
+
# self.include_root_in_json = true
|
14
|
+
# end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n
|
2
|
+
|
3
|
+
en:
|
4
|
+
devise:
|
5
|
+
confirmations:
|
6
|
+
confirmed: "Your email address has been successfully confirmed."
|
7
|
+
send_instructions: "You will receive an email with instructions for how to confirm your email address in a few minutes."
|
8
|
+
send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes."
|
9
|
+
failure:
|
10
|
+
already_authenticated: "You are already signed in."
|
11
|
+
inactive: "Your account is not activated yet."
|
12
|
+
invalid: "Invalid %{authentication_keys} or password."
|
13
|
+
locked: "Your account is locked."
|
14
|
+
last_attempt: "You have one more attempt before your account is locked."
|
15
|
+
not_found_in_database: "Invalid %{authentication_keys} or password."
|
16
|
+
timeout: "Your session expired. Please sign in again to continue."
|
17
|
+
unauthenticated: "You need to sign in or sign up before continuing."
|
18
|
+
unconfirmed: "You have to confirm your email address before continuing."
|
19
|
+
mailer:
|
20
|
+
confirmation_instructions:
|
21
|
+
subject: "Confirmation instructions"
|
22
|
+
reset_password_instructions:
|
23
|
+
subject: "Reset password instructions"
|
24
|
+
unlock_instructions:
|
25
|
+
subject: "Unlock instructions"
|
26
|
+
email_changed:
|
27
|
+
subject: "Email Changed"
|
28
|
+
password_change:
|
29
|
+
subject: "Password Changed"
|
30
|
+
omniauth_callbacks:
|
31
|
+
failure: "Could not authenticate you from %{kind} because \"%{reason}\"."
|
32
|
+
success: "Successfully authenticated from %{kind} account."
|
33
|
+
passwords:
|
34
|
+
no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
|
35
|
+
send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes."
|
36
|
+
send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
|
37
|
+
updated: "Your password has been changed successfully. You are now signed in."
|
38
|
+
updated_not_active: "Your password has been changed successfully."
|
39
|
+
registrations:
|
40
|
+
destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon."
|
41
|
+
signed_up: "Welcome! You have signed up successfully."
|
42
|
+
signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated."
|
43
|
+
signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked."
|
44
|
+
signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account."
|
45
|
+
update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirm link to confirm your new email address."
|
46
|
+
updated: "Your account has been updated successfully."
|
47
|
+
sessions:
|
48
|
+
signed_in: "Signed in successfully."
|
49
|
+
signed_out: "Signed out successfully."
|
50
|
+
already_signed_out: "Signed out successfully."
|
51
|
+
unlocks:
|
52
|
+
send_instructions: "You will receive an email with instructions for how to unlock your account in a few minutes."
|
53
|
+
send_paranoid_instructions: "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes."
|
54
|
+
unlocked: "Your account has been unlocked successfully. Please sign in to continue."
|
55
|
+
errors:
|
56
|
+
messages:
|
57
|
+
already_confirmed: "was already confirmed, please try signing in"
|
58
|
+
confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one"
|
59
|
+
expired: "has expired, please request a new one"
|
60
|
+
not_found: "not found"
|
61
|
+
not_locked: "was not locked"
|
62
|
+
not_saved:
|
63
|
+
one: "1 error prohibited this %{resource} from being saved:"
|
64
|
+
other: "%{count} errors prohibited this %{resource} from being saved:"
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# The following keys must be escaped otherwise they will not be retrieved by
|
20
|
+
# the default I18n backend:
|
21
|
+
#
|
22
|
+
# true, false, on, off, yes, no
|
23
|
+
#
|
24
|
+
# Instead, surround them with single quotes.
|
25
|
+
#
|
26
|
+
# en:
|
27
|
+
# 'true': 'foo'
|
28
|
+
#
|
29
|
+
# To learn more, please read the Rails Internationalization guide
|
30
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
31
|
+
|
32
|
+
en:
|
33
|
+
hello: "Hello world"
|
data/config/puma.rb
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# Puma can serve each request in a thread from an internal thread pool.
|
2
|
+
# The `threads` method setting takes two numbers: a minimum and maximum.
|
3
|
+
# Any libraries that use thread pools should be configured to match
|
4
|
+
# the maximum value specified for Puma. Default is set to 5 threads for minimum
|
5
|
+
# and maximum; this matches the default thread size of Active Record.
|
6
|
+
#
|
7
|
+
threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
|
8
|
+
threads threads_count, threads_count
|
9
|
+
|
10
|
+
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
|
11
|
+
#
|
12
|
+
port ENV.fetch("PORT") { 3000 }
|
13
|
+
|
14
|
+
# Specifies the `environment` that Puma will run in.
|
15
|
+
#
|
16
|
+
environment ENV.fetch("RAILS_ENV") { "development" }
|
17
|
+
|
18
|
+
# Specifies the number of `workers` to boot in clustered mode.
|
19
|
+
# Workers are forked webserver processes. If using threads and workers together
|
20
|
+
# the concurrency of the application would be max `threads` * `workers`.
|
21
|
+
# Workers do not work on JRuby or Windows (both of which do not support
|
22
|
+
# processes).
|
23
|
+
#
|
24
|
+
# workers ENV.fetch("WEB_CONCURRENCY") { 2 }
|
25
|
+
|
26
|
+
# Use the `preload_app!` method when specifying a `workers` number.
|
27
|
+
# This directive tells Puma to first boot the application and load code
|
28
|
+
# before forking the application. This takes advantage of Copy On Write
|
29
|
+
# process behavior so workers use less memory.
|
30
|
+
#
|
31
|
+
# preload_app!
|
32
|
+
|
33
|
+
# Allow puma to be restarted by `rails restart` command.
|
34
|
+
plugin :tmp_restart
|
data/config/routes.rb
ADDED
data/config/spring.rb
ADDED
data/config/storage.yml
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
test:
|
2
|
+
service: Disk
|
3
|
+
root: <%= Rails.root.join("tmp/storage") %>
|
4
|
+
|
5
|
+
local:
|
6
|
+
service: Disk
|
7
|
+
root: <%= Rails.root.join("storage") %>
|
8
|
+
|
9
|
+
# Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
|
10
|
+
# amazon:
|
11
|
+
# service: S3
|
12
|
+
# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
|
13
|
+
# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
|
14
|
+
# region: us-east-1
|
15
|
+
# bucket: your_own_bucket
|
16
|
+
|
17
|
+
# Remember not to checkin your GCS keyfile to a repository
|
18
|
+
# google:
|
19
|
+
# service: GCS
|
20
|
+
# project: your_project
|
21
|
+
# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
|
22
|
+
# bucket: your_own_bucket
|
23
|
+
|
24
|
+
# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
|
25
|
+
# microsoft:
|
26
|
+
# service: AzureStorage
|
27
|
+
# storage_account_name: your_account_name
|
28
|
+
# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
|
29
|
+
# container: your_container_name
|
30
|
+
|
31
|
+
# mirror:
|
32
|
+
# service: Mirror
|
33
|
+
# primary: local
|
34
|
+
# mirrors: [ amazon, google, microsoft ]
|
@@ -0,0 +1,71 @@
|
|
1
|
+
# Note: You must restart bin/webpack-dev-server for changes to take effect
|
2
|
+
|
3
|
+
default: &default
|
4
|
+
source_path: app/javascript
|
5
|
+
source_entry_path: packs
|
6
|
+
public_output_path: packs
|
7
|
+
cache_path: tmp/cache/webpacker
|
8
|
+
|
9
|
+
# Additional paths webpack should lookup modules
|
10
|
+
# ['app/assets', 'engine/foo/app/assets']
|
11
|
+
resolved_paths: []
|
12
|
+
|
13
|
+
# Reload manifest.json on all requests so we reload latest compiled packs
|
14
|
+
cache_manifest: false
|
15
|
+
|
16
|
+
extensions:
|
17
|
+
- .tsx
|
18
|
+
- .ts
|
19
|
+
- .jsx
|
20
|
+
- .js
|
21
|
+
- .sass
|
22
|
+
- .scss
|
23
|
+
- .css
|
24
|
+
- .module.sass
|
25
|
+
- .module.scss
|
26
|
+
- .module.css
|
27
|
+
- .png
|
28
|
+
- .svg
|
29
|
+
- .gif
|
30
|
+
- .jpeg
|
31
|
+
- .jpg
|
32
|
+
|
33
|
+
development:
|
34
|
+
<<: *default
|
35
|
+
compile: true
|
36
|
+
|
37
|
+
# Reference: https://webpack.js.org/configuration/dev-server/
|
38
|
+
dev_server:
|
39
|
+
https: false
|
40
|
+
host: localhost
|
41
|
+
port: 3035
|
42
|
+
public: localhost:3035
|
43
|
+
hmr: false
|
44
|
+
# Inline should be set to true if using HMR
|
45
|
+
inline: true
|
46
|
+
overlay: true
|
47
|
+
compress: true
|
48
|
+
disable_host_check: true
|
49
|
+
use_local_ip: false
|
50
|
+
quiet: false
|
51
|
+
headers:
|
52
|
+
'Access-Control-Allow-Origin': '*'
|
53
|
+
watch_options:
|
54
|
+
ignored: /node_modules/
|
55
|
+
|
56
|
+
|
57
|
+
test:
|
58
|
+
<<: *default
|
59
|
+
compile: true
|
60
|
+
|
61
|
+
# Compile test packs to a separate directory
|
62
|
+
public_output_path: packs-test
|
63
|
+
|
64
|
+
production:
|
65
|
+
<<: *default
|
66
|
+
|
67
|
+
# Production depends on precompilation of packs prior to booting for performance.
|
68
|
+
compile: false
|
69
|
+
|
70
|
+
# Cache manifest.json for performance
|
71
|
+
cache_manifest: true
|
data/config.ru
ADDED
data/db/seeds.rb
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
2
|
+
# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
|
3
|
+
#
|
4
|
+
# Examples:
|
5
|
+
#
|
6
|
+
# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
|
7
|
+
# Character.create(name: 'Luke', movie: movies.first)
|
data/lib/Xwitter.rb
ADDED
data/lib/assets/.keep
ADDED
File without changes
|
data/lib/tasks/.keep
ADDED
File without changes
|
data/log/.keep
ADDED
File without changes
|