faw_files 1.0.0 → 1.1.0

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: e436d9edfac07e7c54c16172f0e1260895e93d5778ce093945413d39dda297cd
4
- data.tar.gz: ed96172f6a2e04c84bee600a80ae93d807035353f03c9833da8b841c3c0cc9df
3
+ metadata.gz: 99f903535b3faa7cab9e8480c7a92e051d3b739df0cd3ddadcd2ec13defbfc08
4
+ data.tar.gz: f2458e90620c7a01c6bdbc5b8f36bf65778dfe9692c357208aa29a3f06c46e0a
5
5
  SHA512:
6
- metadata.gz: 7a64659467387fba37ebbc082770532790a591f24bd75873ec235d32e32b87525c7f04e0dc94892bcaa600e49892853e01cdade88efb1c26392c5ce6388a2356
7
- data.tar.gz: f7e6a02bc78f30534f3c7c235fad75d3d02e4b69a4ebc883e41f480ede1b50db3a3d3799bc54d6accfdb6e13d0853b1f1d82aadeba837636d5acebff6b445b3c
6
+ metadata.gz: aaba719d86063b6525d4e1b232c4950afcb417f86c5405642660840f51b29adc618f9ac4dcf93490ce568ff11d418b9990e449f5a66139239e87ec2324196729
7
+ data.tar.gz: 670c91967b497a81537cdad5abd7e9c51537d06bb769c6d59e7a0e18e922b538ef39ac49ba1e35842c69f799d6bc0e5bfe8c0cfb87d21d89031bdd0d019b70d5
data/.gitignore CHANGED
@@ -6,3 +6,5 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+
10
+ *.gem
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- faw_files (1.0.0)
4
+ faw_files (1.1.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/faw_files.gemspec CHANGED
@@ -6,53 +6,15 @@ Gem::Specification.new do |spec|
6
6
  spec.name = "faw_files"
7
7
  spec.version = FawFiles::VERSION
8
8
  spec.authors = ["alexwebgr"]
9
- # spec.email = ["TODO: Write your email address"]
10
9
 
11
- spec.summary = "Write a short summary, because RubyGems requires one."
12
- spec.description = "Write a longer description or delete this line."
10
+ spec.summary = "A wrapper for Font-Awesome Pro svg files"
13
11
  spec.license = "MIT"
14
12
  spec.homepage = "https://github.com/alexwebgr/faw_files"
15
- # spec.homepage = "TODO: Put your gem's website or public repo URL here."
16
13
  spec.required_ruby_version = ">= 3.0.0"
17
14
 
18
- # spec.metadata["homepage_uri"] = spec.homepage
19
- # spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
20
- # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
21
-
22
- # Specify which files should be added to the gem when it is released.
23
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
- gemspec = File.basename(__FILE__)
25
- # spec.files = IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL) do |ls|
26
- # ls.readlines("\x0", chomp: true).reject do |f|
27
- # (f == gemspec) ||
28
- # f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
29
- # end
30
- # end
31
- # spec.require_paths = ["lib"]
32
- # spec.files = Dir["{lib,vendor}/**/*", "README.md", "faw_files.gemspec"]
33
-
34
- # all_files = Dir.glob("{lib,vendor,bin}/**/*", File::FNM_DOTMATCH) +
35
- # Dir.glob("{faw_files.gemspec}") # Add root files
36
- #
37
- # # Filter out directories and the nested .git content
38
- # spec.files = all_files.reject do |f|
39
- # File.directory?(f) ||
40
- # f.include?('/.git/') ||
41
- # f.end_with?('/.git') ||
42
- # f.start_with?('.idea/')
43
- # end
44
-
45
15
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
46
16
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin|test|spec|features|vendor|.git|.idea)/}) }
47
17
  end
48
18
 
49
- # Filter executables from the *filtered* file list
50
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
51
19
  spec.require_paths = ["lib"]
52
-
53
- # Uncomment to register a new dependency of your gem
54
- # spec.add_dependency "example-gem", "~> 1.0"
55
-
56
- # For more information and examples about making a new gem, check out our
57
- # guide at: https://bundler.io/guides/creating_gem.html
58
20
  end
@@ -2,11 +2,5 @@
2
2
 
3
3
  module FawFiles
4
4
  class Engine < ::Rails::Engine
5
- initializer "faw_files.assets.precompile" do |app|
6
- app.config.assets.paths << root.join("vendor", "assets", "images")
7
-
8
- # If you need to precompile specific SVG files
9
- app.config.assets.precompile += %w( fa/raw-svg/**/*.svg )
10
- end
11
5
  end
12
6
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FawFiles
4
- VERSION = "1.0.0"
4
+ VERSION = "1.1.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faw_files
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - alexwebgr
@@ -10,7 +10,7 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2025-05-01 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Write a longer description or delete this line.
13
+ description:
14
14
  email:
15
15
  executables: []
16
16
  extensions: []
@@ -25,7 +25,6 @@ files:
25
25
  - lib/faw_files.rb
26
26
  - lib/faw_files/engine.rb
27
27
  - lib/faw_files/version.rb
28
- - sig/faw_files.rbs
29
28
  homepage: https://github.com/alexwebgr/faw_files
30
29
  licenses:
31
30
  - MIT
@@ -48,5 +47,5 @@ requirements: []
48
47
  rubygems_version: 3.3.7
49
48
  signing_key:
50
49
  specification_version: 4
51
- summary: Write a short summary, because RubyGems requires one.
50
+ summary: A wrapper for Font-Awesome Pro svg files
52
51
  test_files: []
data/sig/faw_files.rbs DELETED
@@ -1,4 +0,0 @@
1
- module FawFiles
2
- VERSION: String
3
- # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
- end