atomic_view 0.1.1 → 0.1.2

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: 50345526674109809839b113ef0118c8830a6cbef9f81c25191c50f5b2796df6
4
- data.tar.gz: de35f4bfdac1d689ceaa2c264c98d718f0f0ea5fd1bfb24c5059466ea3197689
3
+ metadata.gz: fa1e1f44c46d2b262a0da6a4538966b5e489dcccd3e6b2655765852e881c7327
4
+ data.tar.gz: e4b0ca74addecc2b6bc709af5f064b955d55047651d1cd133c49277e2b8a2890
5
5
  SHA512:
6
- metadata.gz: 243ba7f352a8c340e407058670a7e5b073479de0cd6d85458c1c3fd60a7c111d41d9b44120dd7f22141ec30009cd378f1f7be02e18814f56bb2c032c5d03ac88
7
- data.tar.gz: e41d5ce855a1431c6d78ba09f6ff4e1ef5e15d8103965ce9e53d02e8eae495c5092baf7f408a2b2d9f9f370707bd5439d7bc6aa7792e178b6900a09e35c3cafe
6
+ metadata.gz: 8a049a982687a30ce7eac365b61bf2de99953b374affdc08d0df622962dc5f9e4a1e9581f3f4aea3819c6071f222e0350e8d68de16d6252970afbbeda9b697fd
7
+ data.tar.gz: ba36cf9cf7a0255353855a4fd835dc0a5e2e8b590a2166a7f3ef478475126000a199127723afc75d81e3f5d9a1448a7580ddec461a0a1c9851e03d98b90022d4
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AtomicView
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
data/lib/atomic_view.rb CHANGED
@@ -25,6 +25,13 @@ module AtomicView
25
25
  def self.configure
26
26
  yield(configuration)
27
27
  end
28
+
29
+ def self.post_install
30
+ puts 'AtomicView: Running post install tasks...'
31
+ rescue StandardError => e
32
+ puts "AtomicView: Failed to update Tailwind configuration. Error: #{e.message}"
33
+ puts "You may need to run 'bin/rails atomic_view:install' manually to complete the setup."
34
+ end
28
35
  end
29
36
 
30
37
  ViewComponent::Form.configure do |config|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atomic_view
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Warrington
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-14 00:00:00.000000000 Z
11
+ date: 2025-07-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: zeitwerk
@@ -173,7 +173,6 @@ files:
173
173
  - lib/atomic_view/configuration.rb
174
174
  - lib/atomic_view/engine.rb
175
175
  - lib/atomic_view/form_builder.rb
176
- - lib/atomic_view/post_install.rb
177
176
  - lib/atomic_view/version.rb
178
177
  - lib/generators/atomic_view/install_generator.rb
179
178
  - lib/tasks/atomic_view_tasks.rake
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module AtomicView
4
- def self.post_install
5
- puts 'AtomicView: Running post install tasks...'
6
- rescue StandardError => e
7
- puts "AtomicView: Failed to update Tailwind configuration. Error: #{e.message}"
8
- puts "You may need to run 'bin/rails atomic_view:install' manually to complete the setup."
9
- end
10
- end