lux-fw 0.5.32 → 0.5.33
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.version +1 -1
- data/lib/README.md +30 -0
- data/lib/lux/README.md +10 -0
- data/lib/lux/application/README.md +147 -0
- data/lib/lux/cache/README.md +47 -0
- data/lib/lux/config/README.md +63 -0
- data/lib/lux/controller/README.md +49 -0
- data/lib/lux/current/README.md +14 -0
- data/lib/lux/delayed_job/README.md +3 -0
- data/lib/lux/error/README.md +41 -0
- data/lib/lux/event_bus/README.md +36 -0
- data/lib/lux/mailer/README.md +73 -0
- data/lib/lux/response/README.md +1 -0
- data/lib/lux/view/README.md +85 -0
- data/misc/demo/Gemfile +4 -0
- data/misc/demo/Rakefile +3 -0
- data/misc/demo/app/assets/css/main/index.scss +1 -0
- data/misc/demo/app/cells/cell.scss +5 -0
- data/misc/demo/app/cells/demo.haml +1 -0
- data/misc/demo/app/views/layouts/main.haml +10 -0
- data/misc/demo/app/views/main/root/index.haml +9 -0
- data/misc/demo/config.ru +5 -0
- data/misc/demo/public/manifest.json +5 -0
- data/misc/demo/tmp/assets/d-app-assets-css-main-index.scss +1 -0
- data/misc/demo/tmp/assets/d-app-cells-cell.scss +5 -0
- data/misc/demo/yarn.lock +2656 -0
- data/misc/lux.png +0 -0
- data/misc/nginx.conf +60 -0
- data/misc/siege-and-puma.txt +3 -0
- data/plugins/api/README.md +49 -0
- data/plugins/db/README.md +29 -0
- data/plugins/db/auto_migrate/db.rake +15 -0
- data/plugins/exceptions/exceptions.rake +43 -0
- data/plugins/html/README.md +3 -0
- data/plugins/js_widgets/README.md +5 -0
- data/plugins/js_widgets/js/html_tag.coffee +42 -0
- data/plugins/js_widgets/js/widgets.coffee +161 -0
- data/tasks/nginx.rake +23 -0
- metadata +38 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lux-fw
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.33
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dino Reic
|
@@ -284,6 +284,7 @@ files:
|
|
284
284
|
- "./bin/cli/server.rb"
|
285
285
|
- "./bin/cli/stats.rb"
|
286
286
|
- "./bin/lux"
|
287
|
+
- "./lib/README.md"
|
287
288
|
- "./lib/common/class_attributes.rb"
|
288
289
|
- "./lib/common/class_callbacks.rb"
|
289
290
|
- "./lib/common/crypt.rb"
|
@@ -294,32 +295,44 @@ files:
|
|
294
295
|
- "./lib/common/string_base.rb"
|
295
296
|
- "./lib/common/url.rb"
|
296
297
|
- "./lib/lux-fw.rb"
|
298
|
+
- "./lib/lux/README.md"
|
299
|
+
- "./lib/lux/application/README.md"
|
297
300
|
- "./lib/lux/application/application.rb"
|
298
301
|
- "./lib/lux/application/lib/nav.rb"
|
299
302
|
- "./lib/lux/application/lib/render.rb"
|
303
|
+
- "./lib/lux/cache/README.md"
|
300
304
|
- "./lib/lux/cache/cache.rb"
|
301
305
|
- "./lib/lux/cache/lib/memory.rb"
|
302
306
|
- "./lib/lux/cache/lib/null.rb"
|
307
|
+
- "./lib/lux/config/README.md"
|
303
308
|
- "./lib/lux/config/config.rb"
|
304
309
|
- "./lib/lux/config/lib/plugin.rb"
|
305
310
|
- "./lib/lux/config/lib/secrets.rb"
|
311
|
+
- "./lib/lux/controller/README.md"
|
306
312
|
- "./lib/lux/controller/controller.rb"
|
313
|
+
- "./lib/lux/current/README.md"
|
307
314
|
- "./lib/lux/current/current.rb"
|
308
315
|
- "./lib/lux/current/lib/encrypt_params.rb"
|
309
316
|
- "./lib/lux/current/lib/session.rb"
|
317
|
+
- "./lib/lux/delayed_job/README.md"
|
310
318
|
- "./lib/lux/delayed_job/delayed_job.rb"
|
311
319
|
- "./lib/lux/delayed_job/lib/memory.rb"
|
312
320
|
- "./lib/lux/delayed_job/lib/nsq.rb"
|
313
321
|
- "./lib/lux/delayed_job/lib/postgre.rb"
|
314
322
|
- "./lib/lux/delayed_job/lib/redis.rb"
|
323
|
+
- "./lib/lux/error/README.md"
|
315
324
|
- "./lib/lux/error/error.rb"
|
325
|
+
- "./lib/lux/event_bus/README.md"
|
316
326
|
- "./lib/lux/event_bus/event_bus.rb"
|
317
327
|
- "./lib/lux/lux.rb"
|
328
|
+
- "./lib/lux/mailer/README.md"
|
318
329
|
- "./lib/lux/mailer/mailer.rb"
|
330
|
+
- "./lib/lux/response/README.md"
|
319
331
|
- "./lib/lux/response/lib/file.rb"
|
320
332
|
- "./lib/lux/response/lib/flash.rb"
|
321
333
|
- "./lib/lux/response/lib/header.rb"
|
322
334
|
- "./lib/lux/response/response.rb"
|
335
|
+
- "./lib/lux/view/README.md"
|
323
336
|
- "./lib/lux/view/cell.rb"
|
324
337
|
- "./lib/lux/view/helper.rb"
|
325
338
|
- "./lib/lux/view/lib/cell_helpers.rb"
|
@@ -339,22 +352,40 @@ files:
|
|
339
352
|
- "./lib/overload/string.rb"
|
340
353
|
- "./lib/overload/struct.rb"
|
341
354
|
- "./lib/overload/time.rb"
|
355
|
+
- "./misc/demo/Gemfile"
|
356
|
+
- "./misc/demo/Rakefile"
|
357
|
+
- "./misc/demo/app/assets/css/main/index.scss"
|
358
|
+
- "./misc/demo/app/cells/cell.scss"
|
359
|
+
- "./misc/demo/app/cells/demo.haml"
|
342
360
|
- "./misc/demo/app/cells/demo_cell.rb"
|
343
361
|
- "./misc/demo/app/controllers/application_controller.rb"
|
344
362
|
- "./misc/demo/app/controllers/main/root_controller.rb"
|
345
363
|
- "./misc/demo/app/routes.rb"
|
364
|
+
- "./misc/demo/app/views/layouts/main.haml"
|
365
|
+
- "./misc/demo/app/views/main/root/index.haml"
|
366
|
+
- "./misc/demo/config.ru"
|
346
367
|
- "./misc/demo/config/application.rb"
|
347
368
|
- "./misc/demo/config/assets.rb"
|
348
369
|
- "./misc/demo/config/environment.rb"
|
370
|
+
- "./misc/demo/public/manifest.json"
|
371
|
+
- "./misc/demo/tmp/assets/d-app-assets-css-main-index.scss"
|
372
|
+
- "./misc/demo/tmp/assets/d-app-cells-cell.scss"
|
373
|
+
- "./misc/demo/yarn.lock"
|
374
|
+
- "./misc/lux.png"
|
375
|
+
- "./misc/nginx.conf"
|
349
376
|
- "./misc/puma_auto_tune.rb"
|
377
|
+
- "./misc/siege-and-puma.txt"
|
350
378
|
- "./misc/unicorn.rb"
|
379
|
+
- "./plugins/api/README.md"
|
351
380
|
- "./plugins/api/api.rb"
|
352
381
|
- "./plugins/api/lib/attr.rb"
|
353
382
|
- "./plugins/api/lib/dsl.rb"
|
354
383
|
- "./plugins/api/lib/error.rb"
|
355
384
|
- "./plugins/api/lib/model_api.rb"
|
356
385
|
- "./plugins/api/lib/response.rb"
|
386
|
+
- "./plugins/db/README.md"
|
357
387
|
- "./plugins/db/auto_migrate/auto_migrate.rb"
|
388
|
+
- "./plugins/db/auto_migrate/db.rake"
|
358
389
|
- "./plugins/db/helpers/array_search.rb"
|
359
390
|
- "./plugins/db/helpers/before_save_filters.rb"
|
360
391
|
- "./plugins/db/helpers/composite_primary_keys.rb"
|
@@ -369,12 +400,17 @@ files:
|
|
369
400
|
- "./plugins/db/logger/lux_response_adapter.rb"
|
370
401
|
- "./plugins/db/paginate/helper.rb"
|
371
402
|
- "./plugins/db/paginate/sequel_adapter.rb"
|
403
|
+
- "./plugins/exceptions/exceptions.rake"
|
372
404
|
- "./plugins/exceptions/simple_exception.rb"
|
373
405
|
- "./plugins/favicon/favicon.rb"
|
406
|
+
- "./plugins/html/README.md"
|
374
407
|
- "./plugins/html/html_form.rb"
|
375
408
|
- "./plugins/html/html_input.rb"
|
376
409
|
- "./plugins/html/html_menu.rb"
|
377
410
|
- "./plugins/html/input_types.rb"
|
411
|
+
- "./plugins/js_widgets/README.md"
|
412
|
+
- "./plugins/js_widgets/js/html_tag.coffee"
|
413
|
+
- "./plugins/js_widgets/js/widgets.coffee"
|
378
414
|
- "./plugins/js_widgets/js_widgets.rb"
|
379
415
|
- "./plugins/oauth/lib/facebook.rb"
|
380
416
|
- "./plugins/oauth/lib/github.rb"
|
@@ -385,6 +421,7 @@ files:
|
|
385
421
|
- "./plugins/oauth/oauth.rb"
|
386
422
|
- "./plugins/policy/policy.rb"
|
387
423
|
- "./tasks/loader.rb"
|
424
|
+
- "./tasks/nginx.rake"
|
388
425
|
- bin/lux
|
389
426
|
homepage: http://trifolium.hr/lux
|
390
427
|
licenses:
|