velvet-components 0.0.13 → 0.0.14

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: b0cfd84118d126071bfb0128305623d10dbb5beba4a50d21b43cf62a5997ebe6
4
- data.tar.gz: 7c4e3734b69ac9aba7417544efbaa475af1aa9039bf1ef77c87bde438eb721b2
3
+ metadata.gz: c29503364f2d78a7011469e035bb6b4424b3d7d9f31d0958a17fb21b035ee5e2
4
+ data.tar.gz: f8d06215ab6c04b51706504c1eb5156ae2e99d2a0543f63dee405d758b89cbae
5
5
  SHA512:
6
- metadata.gz: 21faace757ec5d4a8ec41cdd5b913f6056b59043ceffaf0b73db1795ad193b7d3f47ad838da287b3950786b390be7a864149cbebf016a03d255c3756d7ef3bf2
7
- data.tar.gz: fd451cf3e84b1b514942d88200a950c9b0fdea0074532d679bc274d747477b8a9a4cc315e190b861fc37eb6807fb423846e298e0b3c236c33f688280f01a9231
6
+ metadata.gz: bf686113d88b1b28583a620bf3e2c1dad239ee0cc71f4e111874d8665de3939e0943a5f912c1b9c0a9c3776120eb2fa1834685f7ea70cdf9f76e842c5a7297f0
7
+ data.tar.gz: bfec93b093ccd8f3cc7082a53f551c6f6e58a8c78539047d0a8e9cbc40e881cb4b5df31e8a1a971e575f34018ba94d71c030e34ce85eb414aaa4e22931bbbc15
data/lib/velvet/engine.rb CHANGED
@@ -1,5 +1,16 @@
1
1
  class Velvet
2
2
  class Engine < ::Rails::Engine
3
3
  isolate_namespace Velvet if defined?(Rails)
4
+
5
+ config.autoload_paths = %W[
6
+ #{root}/lib
7
+ ]
8
+
9
+ config.eager_load_paths = %W[
10
+ #{root}/app/components
11
+ #{root}/app/forms
12
+ #{root}/app/helpers
13
+ #{root}/app/lib
14
+ ]
4
15
  end
5
16
  end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ # :nocov:
4
+ module Velvet
5
+ module VERSION
6
+ MAJOR = 0
7
+ MINOR = 46
8
+ PATCH = 0
9
+
10
+ STRING = [ MAJOR, MINOR, PATCH ].join(".")
11
+ end
12
+ end
13
+
14
+ puts Velvet::VERSION::STRING if __FILE__ == $PROGRAM_NAME
15
+ # rubocop:enable Rails/Output
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: velvet-components
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Github Open Source
@@ -127,7 +127,7 @@ files:
127
127
  - config/storage.yml
128
128
  - lib/velvet/engine.rb
129
129
  - lib/velvet/velvet.rb
130
- - lib/velvet_kit.rb
130
+ - lib/velvet/version.rb
131
131
  homepage: https://github.com/velvetkit/velvet_components
132
132
  licenses:
133
133
  - MIT
data/lib/velvet_kit.rb DELETED
@@ -1,5 +0,0 @@
1
- class VelvetKit
2
- def self.hello_world!
3
- "Hello World!"
4
- end
5
- end