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
metadata
ADDED
@@ -0,0 +1,206 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: Xwitter
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- myun2
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-11-10 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.17'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.17'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description: Twitter like interface
|
42
|
+
email:
|
43
|
+
- myun2@mbr.nifty.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".babelrc"
|
49
|
+
- ".gitignore"
|
50
|
+
- ".postcssrc.yml"
|
51
|
+
- ".ruby-version"
|
52
|
+
- Gemfile
|
53
|
+
- Gemfile.lock
|
54
|
+
- LICENSE.txt
|
55
|
+
- README.md
|
56
|
+
- Rakefile
|
57
|
+
- Schemafile
|
58
|
+
- Xwitter.gemspec
|
59
|
+
- app/assets/config/manifest.js
|
60
|
+
- app/assets/images/.keep
|
61
|
+
- app/assets/javascripts/application.js
|
62
|
+
- app/assets/javascripts/cable.js
|
63
|
+
- app/assets/javascripts/channels/.keep
|
64
|
+
- app/assets/javascripts/messages.coffee
|
65
|
+
- app/assets/javascripts/users.coffee
|
66
|
+
- app/assets/stylesheets/application.css
|
67
|
+
- app/assets/stylesheets/messages.scss
|
68
|
+
- app/assets/stylesheets/scaffolds.scss
|
69
|
+
- app/assets/stylesheets/users.scss
|
70
|
+
- app/channels/application_cable/channel.rb
|
71
|
+
- app/channels/application_cable/connection.rb
|
72
|
+
- app/controllers/application_controller.rb
|
73
|
+
- app/controllers/concerns/.keep
|
74
|
+
- app/controllers/messages_controller.rb
|
75
|
+
- app/controllers/profiles_controller.rb
|
76
|
+
- app/helpers/application_helper.rb
|
77
|
+
- app/helpers/messages_helper.rb
|
78
|
+
- app/helpers/users_helper.rb
|
79
|
+
- app/javascript/components/.gitkeep
|
80
|
+
- app/javascript/packs/application.js
|
81
|
+
- app/javascript/packs/application.scss
|
82
|
+
- app/javascript/packs/hello_react.jsx
|
83
|
+
- app/javascript/packs/hello_typescript.ts
|
84
|
+
- app/javascript/packs/server_rendering.js
|
85
|
+
- app/jobs/application_job.rb
|
86
|
+
- app/mailers/application_mailer.rb
|
87
|
+
- app/models/application_record.rb
|
88
|
+
- app/models/concerns/.keep
|
89
|
+
- app/models/message.rb
|
90
|
+
- app/models/user.rb
|
91
|
+
- app/views/layouts/application.html.slim
|
92
|
+
- app/views/layouts/mailer.html.erb
|
93
|
+
- app/views/layouts/mailer.text.erb
|
94
|
+
- app/views/messages/_form.html.slim
|
95
|
+
- app/views/messages/_index.html.slim
|
96
|
+
- app/views/messages/_message.json.jbuilder
|
97
|
+
- app/views/messages/_show.html.slim
|
98
|
+
- app/views/messages/edit.html.slim
|
99
|
+
- app/views/messages/index.html.slim
|
100
|
+
- app/views/messages/index.json.jbuilder
|
101
|
+
- app/views/messages/new.html.slim
|
102
|
+
- app/views/messages/show.html.slim
|
103
|
+
- app/views/messages/show.json.jbuilder
|
104
|
+
- app/views/profiles/_form.html.slim
|
105
|
+
- app/views/profiles/_user.json.jbuilder
|
106
|
+
- app/views/profiles/edit.html.slim
|
107
|
+
- app/views/profiles/show.html.slim
|
108
|
+
- app/views/profiles/show.json.jbuilder
|
109
|
+
- app/views/users/confirmations/new.html.erb
|
110
|
+
- app/views/users/mailer/confirmation_instructions.html.erb
|
111
|
+
- app/views/users/mailer/email_changed.html.erb
|
112
|
+
- app/views/users/mailer/password_change.html.erb
|
113
|
+
- app/views/users/mailer/reset_password_instructions.html.erb
|
114
|
+
- app/views/users/mailer/unlock_instructions.html.erb
|
115
|
+
- app/views/users/passwords/edit.html.erb
|
116
|
+
- app/views/users/passwords/new.html.erb
|
117
|
+
- app/views/users/registrations/edit.html.erb
|
118
|
+
- app/views/users/registrations/new.html.erb
|
119
|
+
- app/views/users/sessions/new.html.slim
|
120
|
+
- app/views/users/shared/_links.html.slim
|
121
|
+
- app/views/users/unlocks/new.html.erb
|
122
|
+
- bin/bundle
|
123
|
+
- bin/console
|
124
|
+
- bin/rails
|
125
|
+
- bin/rake
|
126
|
+
- bin/setup
|
127
|
+
- bin/spring
|
128
|
+
- bin/update
|
129
|
+
- bin/webpack
|
130
|
+
- bin/webpack-dev-server
|
131
|
+
- bin/yarn
|
132
|
+
- config.ru
|
133
|
+
- config/application.rb
|
134
|
+
- config/boot.rb
|
135
|
+
- config/cable.yml
|
136
|
+
- config/credentials.yml.enc
|
137
|
+
- config/database.yml
|
138
|
+
- config/environment.rb
|
139
|
+
- config/environments/development.rb
|
140
|
+
- config/environments/production.rb
|
141
|
+
- config/environments/test.rb
|
142
|
+
- config/initializers/application_controller_renderer.rb
|
143
|
+
- config/initializers/assets.rb
|
144
|
+
- config/initializers/backtrace_silencers.rb
|
145
|
+
- config/initializers/content_security_policy.rb
|
146
|
+
- config/initializers/cookies_serializer.rb
|
147
|
+
- config/initializers/devise.rb
|
148
|
+
- config/initializers/filter_parameter_logging.rb
|
149
|
+
- config/initializers/inflections.rb
|
150
|
+
- config/initializers/mime_types.rb
|
151
|
+
- config/initializers/wrap_parameters.rb
|
152
|
+
- config/locales/devise.en.yml
|
153
|
+
- config/locales/en.yml
|
154
|
+
- config/puma.rb
|
155
|
+
- config/routes.rb
|
156
|
+
- config/spring.rb
|
157
|
+
- config/storage.yml
|
158
|
+
- config/webpack/development.js
|
159
|
+
- config/webpack/environment.js
|
160
|
+
- config/webpack/loaders/typescript.js
|
161
|
+
- config/webpack/production.js
|
162
|
+
- config/webpack/test.js
|
163
|
+
- config/webpacker.yml
|
164
|
+
- db/seeds.rb
|
165
|
+
- lib/Xwitter.rb
|
166
|
+
- lib/Xwitter/version.rb
|
167
|
+
- lib/assets/.keep
|
168
|
+
- lib/tasks/.keep
|
169
|
+
- log/.keep
|
170
|
+
- package.json
|
171
|
+
- public/404.html
|
172
|
+
- public/422.html
|
173
|
+
- public/500.html
|
174
|
+
- public/apple-touch-icon-precomposed.png
|
175
|
+
- public/apple-touch-icon.png
|
176
|
+
- public/favicon.ico
|
177
|
+
- public/robots.txt
|
178
|
+
- storage/.keep
|
179
|
+
- tsconfig.json
|
180
|
+
- vendor/.keep
|
181
|
+
- yarn.lock
|
182
|
+
homepage: https://github.com/myun2/Xwitter
|
183
|
+
licenses:
|
184
|
+
- MIT
|
185
|
+
metadata: {}
|
186
|
+
post_install_message:
|
187
|
+
rdoc_options: []
|
188
|
+
require_paths:
|
189
|
+
- lib
|
190
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - ">="
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '0'
|
195
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
196
|
+
requirements:
|
197
|
+
- - ">="
|
198
|
+
- !ruby/object:Gem::Version
|
199
|
+
version: '0'
|
200
|
+
requirements: []
|
201
|
+
rubyforge_project:
|
202
|
+
rubygems_version: 2.7.7
|
203
|
+
signing_key:
|
204
|
+
specification_version: 4
|
205
|
+
summary: Twitter like interface
|
206
|
+
test_files: []
|