log_format 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c1300cbba4abca57013cd87b585b99b103149345
4
- data.tar.gz: 770e3ad5ba8e853be9e0851fbf41a364641c3eac
3
+ metadata.gz: c013b64b410995195fc87986cd4620303cd6b410
4
+ data.tar.gz: 59bb12362cd4e9353508b19ab4ef703117de63a6
5
5
  SHA512:
6
- metadata.gz: 13ddf5ed996c0714471cba1b88f54395df5d2e6b8e92be070001c67d793c8964dbc33530fea633658862f5de798814781b0b2af3cf7336c1fe18bc5bee796991
7
- data.tar.gz: cfd5cf84b566357c94211ac4384a0f3d407fe4367c6c38866ad1aacc2872654a22ff7b162be65e0a138d09812399ad91a4bf8832135189d9f487cbcb0c0b22d8
6
+ metadata.gz: 17e448b0c8131163dfb4c164e7c53ebb04ca4e5ec6b4bd9e8f69138f791c6d819b2e0673709f89f0621d156135ae07679850c522a8c5c46bd2c743297d9495ea
7
+ data.tar.gz: 38ed41bb4606480c77458ce6bebb8dba34fd6db14a2d270926f83581a8846fa5b0c46b864c896685e946ac437ed789dde8faab8d26a7e3002f5e8c95f24df0ff
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,4 @@
1
+ module LogFormat
2
+ class ApplicationController < ActionController::Base
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module LogFormat
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>LogFormat</title>
5
+ <%= stylesheet_link_tag "log_format/application", media: "all" %>
6
+ <%= javascript_include_tag "log_format/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
data/config/routes.rb CHANGED
@@ -1,2 +1,2 @@
1
- Rails.application.routes.draw do
1
+ LogFormat::Engine.routes.draw do
2
2
  end
@@ -1,4 +1,5 @@
1
1
  module LogFormat
2
2
  class Engine < ::Rails::Engine
3
+ isolate_namespace LogFormat
3
4
  end
4
5
  end
@@ -1,3 +1,3 @@
1
1
  module LogFormat
2
- VERSION = "0.0.1"
2
+ VERSION = '0.0.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: log_format
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mathias Gawlista
@@ -24,15 +24,33 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 4.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: sqlite3
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
27
41
  description: "#Rails actions-accordion grouped by SQL read & write tabs"
28
42
  email:
29
- - gawlista.mathias@vimn.com
43
+ - gawlista@gmail.com
30
44
  executables: []
31
45
  extensions: []
32
46
  extra_rdoc_files: []
33
47
  files:
34
48
  - MIT-LICENSE
35
49
  - Rakefile
50
+ - app/assets/stylesheets/log_format/application.css
51
+ - app/controllers/log_format/application_controller.rb
52
+ - app/helpers/log_format/application_helper.rb
53
+ - app/views/layouts/log_format/application.html.erb
36
54
  - config/routes.rb
37
55
  - lib/log_format.rb
38
56
  - lib/log_format/engine.rb