mission_control-jobs 0.3.2 → 0.3.3

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
  SHA256:
3
- metadata.gz: d7d0d51d0662e0351ff33ed1b2a480a7f1d11c593eefbe89a630a980de5a1b24
4
- data.tar.gz: a9c05be3a1b2b0975c3d7095ac3d3433c502b5afd87a942996ced2aa01485b6c
3
+ metadata.gz: 8c7ce16ee37335d17b00c145f7cfdeca380a031610dc47d03eebd7a42ca8771a
4
+ data.tar.gz: ac159740d425e2599a44209b10372f22b57541c4c3f110a48d024c99619a17ae
5
5
  SHA512:
6
- metadata.gz: de6116de1a5b4fd7b87d4aba9e245953147edaa3cf8dd9e5e464be815dec79d74977dbe60b638246a6fe3625f9cb050aaceb9cd09c73eda857b1756006700328
7
- data.tar.gz: 4e133652b36ec90c22fc9e77170e985d6b18c1a68ae73ce43361a1ea5be9c14820f8db594ce713bbcf7a8a6540766f9f6d4a5974dd51a9510fb94040f57fde76
6
+ metadata.gz: 3b8db873d41d670e3653c2c0cf54dce91ffba77d8ecd0fde0469debd7fb2d24b193c57900d2f8679ae1a7142b760cc1d0f558302a398a6ceeb4a9ee36d45207d
7
+ data.tar.gz: 51b8e4693062abe8e4f4c405c8d35e20389b0b8269c7a730390c5a499fa7dfd16e79a0bb60ee88f689519bf59c5b6904a9792ee89165814176487fa0de18fb49
@@ -0,0 +1,4 @@
1
+ //= link_directory ../stylesheets/mission_control/jobs .css
2
+ //= link_directory ../../javascript/mission_control/jobs .js
3
+ //= link_directory ../../javascript/mission_control/jobs/controllers .js
4
+ //= link_directory ../../javascript/mission_control/jobs/helpers .js
@@ -1,2 +1,16 @@
1
- @import url("./forms.css");
2
- @import url("./jobs.css");
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
+ */
16
+
@@ -1,14 +1,6 @@
1
1
  class MissionControl::Jobs::ApplicationController < MissionControl::Jobs.base_controller_class.constantize
2
- ActionController::Base::MODULES.each do |mod|
3
- include mod unless self < mod
4
- end
5
-
6
2
  layout "mission_control/jobs/application"
7
3
 
8
- # Include helpers if not already included
9
- helper MissionControl::Jobs::ApplicationHelper unless self < MissionControl::Jobs::ApplicationHelper
10
- helper Importmap::ImportmapTagsHelper unless self < Importmap::ImportmapTagsHelper
11
-
12
4
  include MissionControl::Jobs::ApplicationScoped, MissionControl::Jobs::NotFoundRedirections
13
5
  include MissionControl::Jobs::AdapterFeatures
14
6
 
@@ -7,7 +7,7 @@
7
7
 
8
8
  <meta name="viewport" content="width=device-width,initial-scale=1">
9
9
  <meta name="turbo-cache-control" content="no-cache">
10
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
10
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.1/css/bulma.min.css">
11
11
  <%= stylesheet_link_tag "mission_control/jobs/application", "data-turbo-track": "reload" %>
12
12
  <%= javascript_importmap_tags "application-mcj" %>
13
13
  </head>
@@ -4,15 +4,12 @@ require "mission_control/jobs/engine"
4
4
  require "importmap-rails"
5
5
  require "turbo-rails"
6
6
  require "stimulus-rails"
7
- require "propshaft"
8
7
 
9
8
  module MissionControl
10
9
  module Jobs
11
10
  class Engine < ::Rails::Engine
12
11
  isolate_namespace MissionControl::Jobs
13
12
 
14
- config.middleware.use ActionDispatch::Flash unless config.action_dispatch.flash
15
-
16
13
  config.mission_control = ActiveSupport::OrderedOptions.new unless config.try(:mission_control)
17
14
  config.mission_control.jobs = ActiveSupport::OrderedOptions.new
18
15
 
@@ -90,7 +87,6 @@ module MissionControl
90
87
  end
91
88
 
92
89
  initializer "mission_control-jobs.assets" do |app|
93
- app.config.assets.paths << root.join("app/assets/stylesheets")
94
90
  app.config.assets.paths << root.join("app/javascript")
95
91
  app.config.assets.precompile += %w[ mission_control_jobs_manifest ]
96
92
  end
@@ -1,5 +1,5 @@
1
1
  module MissionControl
2
2
  module Jobs
3
- VERSION = "0.3.2"
3
+ VERSION = "0.3.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mission_control-jobs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jorge Manrubia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-05 00:00:00.000000000 Z
11
+ date: 2024-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '7.1'
27
- - !ruby/object:Gem::Dependency
28
- name: propshaft
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: importmap-rails
43
29
  requirement: !ruby/object:Gem::Requirement
@@ -300,6 +286,7 @@ files:
300
286
  - MIT-LICENSE
301
287
  - README.md
302
288
  - Rakefile
289
+ - app/assets/config/mission_control_jobs_manifest.js
303
290
  - app/assets/stylesheets/mission_control/jobs/application.css
304
291
  - app/assets/stylesheets/mission_control/jobs/forms.css
305
292
  - app/assets/stylesheets/mission_control/jobs/jobs.css