manifester 0.1.5 → 0.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4bf42ad927b127e72debfa126bd7c4117f7f794fcb87d61266ba1241c7fd2e26
4
- data.tar.gz: 91c7da5020d971a9fe82e5b35d30f02015cb6920ee9638b513fad9c783b461e2
3
+ metadata.gz: '088a2766a4deabda3e26b0d0efac8b7c00686310c40c63dac4094e0b2177e294'
4
+ data.tar.gz: d786b667e35626daab164c4bc86e8f5703e74ff1e78ee837aa2ff96b162c73ca
5
5
  SHA512:
6
- metadata.gz: c03ae21fa18927df9bf59a83a23d1eca5508f22ed19e71c41dac582d83b09d7a3bb9bf592959e3b14c87817defcdd21a0c85010dd09b00c70fa96c72b4e768de
7
- data.tar.gz: 8147999a1e4af9be730f39a1e54f0d1523b3902a41118850bda307a5d6fbf7396b42249a176b510c1fea7d11feca9f72b38ea12dc39c8820d7f9993bcff6867f
6
+ metadata.gz: 4862ea4890fa0d2c8372c008a9fd982e0accf20c2fc3ef70e95f5e6b318e6851b25702f8b73a18f72a5faa38f1d2a6e0258314d773a9b7a69ce935016ff1857a
7
+ data.tar.gz: 51e5199b390f57262d8cff1cf07488dfe90637e63a12195a8d247988976982885e37702b09dc8737b2793848e389246eca88affcebe1321a34bd70c325dc90f8
data/lib/manifester.rb CHANGED
@@ -5,6 +5,7 @@ loader = Zeitwerk::Loader.for_gem
5
5
  loader.push_dir("#{__dir__}/manifester", namespace: Manifester)
6
6
  loader.setup
7
7
 
8
+ require "manifester/helper"
8
9
  require "manifester/instance"
9
10
  require "manifester/configuration"
10
11
  require "manifester/manifest"
@@ -1,5 +1,5 @@
1
1
  module Manifester
2
- module ApplicationHelper
2
+ module Helper
3
3
  def current_manifester_instance
4
4
  Manifester.instance
5
5
  end
@@ -1,3 +1,3 @@
1
1
  module Manifester
2
- VERSION = '0.1.5'
2
+ VERSION = '0.1.6'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manifester
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrian Marin
@@ -49,19 +49,11 @@ files:
49
49
  - MIT-LICENSE
50
50
  - README.md
51
51
  - Rakefile
52
- - app/assets/config/manifester_manifest.js
53
- - app/assets/stylesheets/manifester/application.css
54
- - app/controllers/manifester/application_controller.rb
55
- - app/helpers/manifester/application_helper.rb
56
- - app/jobs/manifester/application_job.rb
57
- - app/mailers/manifester/application_mailer.rb
58
- - app/models/manifester/application_record.rb
59
- - app/views/layouts/manifester/application.html.erb
60
- - config/routes.rb
61
52
  - lib/install/config/manifester.yml
62
53
  - lib/manifester.rb
63
54
  - lib/manifester/configuration.rb
64
55
  - lib/manifester/engine.rb
56
+ - lib/manifester/helper.rb
65
57
  - lib/manifester/instance.rb
66
58
  - lib/manifester/manifest.rb
67
59
  - lib/manifester/version.rb
@@ -1 +0,0 @@
1
- //= link_directory ../stylesheets/manifester .css
@@ -1,15 +0,0 @@
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 other CSS/SCSS
10
- * files in this directory. Styles in this file should be added after the last require_* statement.
11
- * It is generally better to create a new file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,4 +0,0 @@
1
- module Manifester
2
- class ApplicationController < ActionController::Base
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module Manifester
2
- class ApplicationJob < ActiveJob::Base
3
- end
4
- end
@@ -1,6 +0,0 @@
1
- module Manifester
2
- class ApplicationMailer < ActionMailer::Base
3
- default from: 'from@example.com'
4
- layout 'mailer'
5
- end
6
- end
@@ -1,5 +0,0 @@
1
- module Manifester
2
- class ApplicationRecord < ActiveRecord::Base
3
- self.abstract_class = true
4
- end
5
- end
@@ -1,15 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Manifester</title>
5
- <%= csrf_meta_tags %>
6
- <%= csp_meta_tag %>
7
-
8
- <%= stylesheet_link_tag "manifester/application", media: "all" %>
9
- </head>
10
- <body>
11
-
12
- <%= yield %>
13
-
14
- </body>
15
- </html>
data/config/routes.rb DELETED
@@ -1,2 +0,0 @@
1
- Manifester::Engine.routes.draw do
2
- end