firetail 0.0.1.pre.alpha → 1.0.1
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 +4 -4
- data/.github/pull_request_template.md +11 -0
- data/.gitignore +13 -13
- data/Gemfile +1 -1
- data/Gemfile.lock +8 -6
- data/README.md +24 -10
- data/examples/rails/.gitattributes +8 -0
- data/examples/rails/.gitignore +31 -0
- data/examples/rails/.rspec +1 -0
- data/examples/rails/.ruby-version +1 -0
- data/examples/rails/Gemfile +44 -0
- data/examples/rails/Gemfile.lock +240 -0
- data/examples/rails/README.md +24 -0
- data/examples/rails/Rakefile +6 -0
- data/examples/rails/app/channels/application_cable/channel.rb +4 -0
- data/examples/rails/app/channels/application_cable/connection.rb +4 -0
- data/examples/rails/app/controllers/application_controller.rb +2 -0
- data/examples/rails/app/controllers/comments_controller.rb +52 -0
- data/examples/rails/app/controllers/concerns/.keep +0 -0
- data/examples/rails/app/controllers/posts_controller.rb +51 -0
- data/examples/rails/app/jobs/application_job.rb +7 -0
- data/examples/rails/app/mailers/application_mailer.rb +4 -0
- data/examples/rails/app/models/application_record.rb +3 -0
- data/examples/rails/app/models/comment.rb +4 -0
- data/examples/rails/app/models/concerns/.keep +0 -0
- data/examples/rails/app/models/post.rb +5 -0
- data/examples/rails/app/views/layouts/mailer.html.erb +13 -0
- data/examples/rails/app/views/layouts/mailer.text.erb +1 -0
- data/examples/rails/bin/bundle +114 -0
- data/examples/rails/bin/rails +5 -0
- data/examples/rails/bin/rake +5 -0
- data/examples/rails/bin/setup +33 -0
- data/examples/rails/bin/spring +14 -0
- data/examples/rails/config/application.rb +41 -0
- data/examples/rails/config/boot.rb +4 -0
- data/examples/rails/config/cable.yml +10 -0
- data/examples/rails/config/credentials.yml.enc +1 -0
- data/examples/rails/config/database.yml +25 -0
- data/examples/rails/config/environment.rb +5 -0
- data/examples/rails/config/environments/development.rb +66 -0
- data/examples/rails/config/environments/production.rb +113 -0
- data/examples/rails/config/environments/test.rb +60 -0
- data/examples/rails/config/firetail.yml +2 -0
- data/examples/rails/config/initializers/application_controller_renderer.rb +8 -0
- data/examples/rails/config/initializers/backtrace_silencers.rb +8 -0
- data/examples/rails/config/initializers/cors.rb +16 -0
- data/examples/rails/config/initializers/filter_parameter_logging.rb +6 -0
- data/examples/rails/config/initializers/inflections.rb +16 -0
- data/examples/rails/config/initializers/mime_types.rb +4 -0
- data/examples/rails/config/initializers/wrap_parameters.rb +14 -0
- data/examples/rails/config/locales/en.yml +33 -0
- data/examples/rails/config/puma.rb +43 -0
- data/examples/rails/config/routes.rb +6 -0
- data/examples/rails/config/schema.json +431 -0
- data/examples/rails/config/spring.rb +6 -0
- data/examples/rails/config/storage.yml +34 -0
- data/examples/rails/config.ru +6 -0
- data/examples/rails/db/migrate/20230730163722_create_posts.rb +8 -0
- data/examples/rails/db/migrate/20230730163741_create_comments.rb +9 -0
- data/examples/rails/db/migrate/20230730164121_add_fields_to_post.rb +6 -0
- data/examples/rails/db/migrate/20230730164214_add_fields_to_comments.rb +6 -0
- data/examples/rails/db/schema.rb +30 -0
- data/examples/rails/db/seeds.rb +7 -0
- data/examples/rails/lib/tasks/.keep +0 -0
- data/examples/rails/log/.keep +0 -0
- data/examples/rails/public/robots.txt +1 -0
- data/examples/rails/spec/models/comment_spec.rb +5 -0
- data/examples/rails/spec/models/post_spec.rb +5 -0
- data/examples/rails/spec/rails_helper.rb +63 -0
- data/examples/rails/spec/requests/comments_spec.rb +127 -0
- data/examples/rails/spec/requests/posts_spec.rb +127 -0
- data/examples/rails/spec/routing/comments_routing_spec.rb +30 -0
- data/examples/rails/spec/routing/posts_routing_spec.rb +30 -0
- data/examples/rails/spec/spec_helper.rb +94 -0
- data/examples/rails/storage/.keep +0 -0
- data/examples/rails/test/channels/application_cable/connection_test.rb +11 -0
- data/examples/rails/test/controllers/.keep +0 -0
- data/examples/rails/test/fixtures/files/.keep +0 -0
- data/examples/rails/test/integration/.keep +0 -0
- data/examples/rails/test/mailers/.keep +0 -0
- data/examples/rails/test/models/.keep +0 -0
- data/examples/rails/test/test_helper.rb +13 -0
- data/examples/rails/tmp/.keep +0 -0
- data/examples/rails/tmp/pids/.keep +0 -0
- data/examples/rails/vendor/.keep +0 -0
- data/firetail.gemspec +1 -1
- data/lib/backend.rb +0 -3
- data/lib/firetail/version.rb +1 -1
- data/lib/firetail.rb +2 -5
- data/lib/generators/firetail/install/templates/firetail.yml +2 -2
- data/lib/railtie.rb +3 -4
- metadata +90 -10
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: firetail
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Muhammad Nuzaihan
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-04-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -114,14 +114,14 @@ dependencies:
|
|
|
114
114
|
requirements:
|
|
115
115
|
- - "~>"
|
|
116
116
|
- !ruby/object:Gem::Version
|
|
117
|
-
version: 5.0.
|
|
117
|
+
version: 5.0.1
|
|
118
118
|
type: :runtime
|
|
119
119
|
prerelease: false
|
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
121
|
requirements:
|
|
122
122
|
- - "~>"
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
|
-
version: 5.0.
|
|
124
|
+
version: 5.0.1
|
|
125
125
|
description: API security library that is designed for ruby
|
|
126
126
|
email:
|
|
127
127
|
- zaihan@flitnetics.com
|
|
@@ -129,6 +129,7 @@ executables: []
|
|
|
129
129
|
extensions: []
|
|
130
130
|
extra_rdoc_files: []
|
|
131
131
|
files:
|
|
132
|
+
- ".github/pull_request_template.md"
|
|
132
133
|
- ".github/workflows/main.yml"
|
|
133
134
|
- ".gitignore"
|
|
134
135
|
- ".rspec"
|
|
@@ -142,6 +143,85 @@ files:
|
|
|
142
143
|
- Rakefile
|
|
143
144
|
- bin/console
|
|
144
145
|
- bin/setup
|
|
146
|
+
- examples/rails/.gitattributes
|
|
147
|
+
- examples/rails/.gitignore
|
|
148
|
+
- examples/rails/.rspec
|
|
149
|
+
- examples/rails/.ruby-version
|
|
150
|
+
- examples/rails/Gemfile
|
|
151
|
+
- examples/rails/Gemfile.lock
|
|
152
|
+
- examples/rails/README.md
|
|
153
|
+
- examples/rails/Rakefile
|
|
154
|
+
- examples/rails/app/channels/application_cable/channel.rb
|
|
155
|
+
- examples/rails/app/channels/application_cable/connection.rb
|
|
156
|
+
- examples/rails/app/controllers/application_controller.rb
|
|
157
|
+
- examples/rails/app/controllers/comments_controller.rb
|
|
158
|
+
- examples/rails/app/controllers/concerns/.keep
|
|
159
|
+
- examples/rails/app/controllers/posts_controller.rb
|
|
160
|
+
- examples/rails/app/jobs/application_job.rb
|
|
161
|
+
- examples/rails/app/mailers/application_mailer.rb
|
|
162
|
+
- examples/rails/app/models/application_record.rb
|
|
163
|
+
- examples/rails/app/models/comment.rb
|
|
164
|
+
- examples/rails/app/models/concerns/.keep
|
|
165
|
+
- examples/rails/app/models/post.rb
|
|
166
|
+
- examples/rails/app/views/layouts/mailer.html.erb
|
|
167
|
+
- examples/rails/app/views/layouts/mailer.text.erb
|
|
168
|
+
- examples/rails/bin/bundle
|
|
169
|
+
- examples/rails/bin/rails
|
|
170
|
+
- examples/rails/bin/rake
|
|
171
|
+
- examples/rails/bin/setup
|
|
172
|
+
- examples/rails/bin/spring
|
|
173
|
+
- examples/rails/config.ru
|
|
174
|
+
- examples/rails/config/application.rb
|
|
175
|
+
- examples/rails/config/boot.rb
|
|
176
|
+
- examples/rails/config/cable.yml
|
|
177
|
+
- examples/rails/config/credentials.yml.enc
|
|
178
|
+
- examples/rails/config/database.yml
|
|
179
|
+
- examples/rails/config/environment.rb
|
|
180
|
+
- examples/rails/config/environments/development.rb
|
|
181
|
+
- examples/rails/config/environments/production.rb
|
|
182
|
+
- examples/rails/config/environments/test.rb
|
|
183
|
+
- examples/rails/config/firetail.yml
|
|
184
|
+
- examples/rails/config/initializers/application_controller_renderer.rb
|
|
185
|
+
- examples/rails/config/initializers/backtrace_silencers.rb
|
|
186
|
+
- examples/rails/config/initializers/cors.rb
|
|
187
|
+
- examples/rails/config/initializers/filter_parameter_logging.rb
|
|
188
|
+
- examples/rails/config/initializers/inflections.rb
|
|
189
|
+
- examples/rails/config/initializers/mime_types.rb
|
|
190
|
+
- examples/rails/config/initializers/wrap_parameters.rb
|
|
191
|
+
- examples/rails/config/locales/en.yml
|
|
192
|
+
- examples/rails/config/puma.rb
|
|
193
|
+
- examples/rails/config/routes.rb
|
|
194
|
+
- examples/rails/config/schema.json
|
|
195
|
+
- examples/rails/config/spring.rb
|
|
196
|
+
- examples/rails/config/storage.yml
|
|
197
|
+
- examples/rails/db/migrate/20230730163722_create_posts.rb
|
|
198
|
+
- examples/rails/db/migrate/20230730163741_create_comments.rb
|
|
199
|
+
- examples/rails/db/migrate/20230730164121_add_fields_to_post.rb
|
|
200
|
+
- examples/rails/db/migrate/20230730164214_add_fields_to_comments.rb
|
|
201
|
+
- examples/rails/db/schema.rb
|
|
202
|
+
- examples/rails/db/seeds.rb
|
|
203
|
+
- examples/rails/lib/tasks/.keep
|
|
204
|
+
- examples/rails/log/.keep
|
|
205
|
+
- examples/rails/public/robots.txt
|
|
206
|
+
- examples/rails/spec/models/comment_spec.rb
|
|
207
|
+
- examples/rails/spec/models/post_spec.rb
|
|
208
|
+
- examples/rails/spec/rails_helper.rb
|
|
209
|
+
- examples/rails/spec/requests/comments_spec.rb
|
|
210
|
+
- examples/rails/spec/requests/posts_spec.rb
|
|
211
|
+
- examples/rails/spec/routing/comments_routing_spec.rb
|
|
212
|
+
- examples/rails/spec/routing/posts_routing_spec.rb
|
|
213
|
+
- examples/rails/spec/spec_helper.rb
|
|
214
|
+
- examples/rails/storage/.keep
|
|
215
|
+
- examples/rails/test/channels/application_cable/connection_test.rb
|
|
216
|
+
- examples/rails/test/controllers/.keep
|
|
217
|
+
- examples/rails/test/fixtures/files/.keep
|
|
218
|
+
- examples/rails/test/integration/.keep
|
|
219
|
+
- examples/rails/test/mailers/.keep
|
|
220
|
+
- examples/rails/test/models/.keep
|
|
221
|
+
- examples/rails/test/test_helper.rb
|
|
222
|
+
- examples/rails/tmp/.keep
|
|
223
|
+
- examples/rails/tmp/pids/.keep
|
|
224
|
+
- examples/rails/vendor/.keep
|
|
145
225
|
- firetail.gemspec
|
|
146
226
|
- lib/backend.rb
|
|
147
227
|
- lib/background_tasks.rb
|
|
@@ -161,7 +241,7 @@ metadata:
|
|
|
161
241
|
homepage_uri: https://www.firetail.io
|
|
162
242
|
source_code_uri: https://github.com/firetail-io/ruby
|
|
163
243
|
changelog_uri: https://github.com/firetail-io/ruby/CHANGELOG.md
|
|
164
|
-
post_install_message:
|
|
244
|
+
post_install_message:
|
|
165
245
|
rdoc_options: []
|
|
166
246
|
require_paths:
|
|
167
247
|
- lib
|
|
@@ -172,12 +252,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
172
252
|
version: '0'
|
|
173
253
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
174
254
|
requirements:
|
|
175
|
-
- - "
|
|
255
|
+
- - ">="
|
|
176
256
|
- !ruby/object:Gem::Version
|
|
177
|
-
version:
|
|
257
|
+
version: '0'
|
|
178
258
|
requirements: []
|
|
179
|
-
rubygems_version: 3.
|
|
180
|
-
signing_key:
|
|
259
|
+
rubygems_version: 3.5.9
|
|
260
|
+
signing_key:
|
|
181
261
|
specification_version: 4
|
|
182
262
|
summary: Ruby library for firetail
|
|
183
263
|
test_files: []
|