zafiro 0.1.2 → 0.1.4

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: cc481cdfa26ed893094072b0a500348cb1e2ea9a1f845cbff3042f5c4e3b65f2
4
- data.tar.gz: 2bbb20643f8206c07fefecbeef309f50c4d2c61cfe4cf17683aaf01de3ce6bb2
3
+ metadata.gz: 98c56c908223f4b1cccdf16668b623a6a44a4ee6a99d8df42d318a55dc9176c9
4
+ data.tar.gz: de9703c9b3afb6fc3df4c8365cd21a28e64a3d528aa3bfa366cfe6ea6f3e1b0f
5
5
  SHA512:
6
- metadata.gz: 53f0ccc8c4e3294e4b602048b9b907cf377d54b3b8be3b34d98ff82df7bb872ba692c44470d2950513f1accf35e52ec93b0bca60f61389edbec091cfe2e260f5
7
- data.tar.gz: 9183b4f93fdff370957906a99ea9944d4d23e8593b0c6122a1e4ee48fb4026966ce4a9057b3ce866cec33ca2d401c60531dea111d127b02cd0dccec355476703
6
+ metadata.gz: e93a720a5cfeb8db7c69d86391277e221d1e3e1203fe1512cc68c0b8462f939fa7c1a45c8a6f161820bf8dd4a90eb2ee7e2a2d07401e988ec99c8999f480757b
7
+ data.tar.gz: 66f7bcce1fac644b8397e863899e2251ee690ad2f78775e3fc843680216dc72ba47a25925a39a10caec06cd199ff0f1026711981ad58e1b0a63b4acf3d90d9f2
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in zafiro.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "standard", "~> 1.3"
@@ -1,4 +1,5 @@
1
- # lib/generators/zafiro/install/install_generator.rb
1
+ require 'rails/generators'
2
+
2
3
  module Zafiro
3
4
  module Generators
4
5
  class InstallGenerator < Rails::Generators::Base
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Zafiro
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.4"
5
5
  end
data/zafiro.gemspec ADDED
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/zafiro/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "zafiro"
7
+ spec.version = Zafiro::VERSION
8
+ spec.authors = ["nicobertin"]
9
+ spec.email = ["bertin@live.cl"]
10
+
11
+ spec.summary = "A UI components library for Ruby applications."
12
+ spec.description = "Zafiro is a UI components library designed to help developers build beautiful and consistent user interfaces for Ruby applications."
13
+ spec.homepage = "https://github.com/nicobertin/zafiro"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 3.0.0"
16
+
17
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
18
+
19
+ spec.metadata["homepage_uri"] = spec.homepage
20
+ spec.metadata["source_code_uri"] = "https://github.com/nicobertin/zafiro"
21
+ spec.metadata["changelog_uri"] = "https://github.com/nicobertin/zafiro/blob/main/CHANGELOG.md"
22
+
23
+ # Specify which files should be added to the gem when it is released.
24
+ spec.files = Dir.glob("**/*").select { |file| File.file?(file) } - Dir.glob("*.gem")
25
+
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ # Uncomment to register a new dependency of your gem
31
+ # spec.add_dependency "example-gem", "~> 1.0"
32
+
33
+ # For more information and examples about making a new gem, check out our
34
+ # guide at: https://bundler.io/guides/creating_gem.html
35
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zafiro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - nicobertin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-29 00:00:00.000000000 Z
11
+ date: 2024-07-30 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Zafiro is a UI components library designed to help developers build beautiful
14
14
  and consistent user interfaces for Ruby applications.
@@ -18,20 +18,20 @@ executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
- - ".gitignore"
22
- - ".standard.yml"
23
21
  - CHANGELOG.md
24
22
  - CODE_OF_CONDUCT.md
23
+ - Gemfile
25
24
  - LICENSE.txt
26
25
  - README.md
27
26
  - Rakefile
28
27
  - bin/console
29
28
  - bin/setup
30
- - lib/generators/zafiro/install/install_generator.rb
31
- - lib/generators/zafiro/install/templates/zafiro.css
32
29
  - lib/zafiro.rb
30
+ - lib/zafiro/generators/install/install_generator.rb
31
+ - lib/zafiro/generators/install/templates/zafiro.css
33
32
  - lib/zafiro/version.rb
34
33
  - sig/zafiro.rbs
34
+ - zafiro.gemspec
35
35
  homepage: https://github.com/nicobertin/zafiro
36
36
  licenses:
37
37
  - MIT
data/.gitignore DELETED
@@ -1,8 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
data/.standard.yml DELETED
@@ -1,3 +0,0 @@
1
- # For available configuration options, see:
2
- # https://github.com/standardrb/standard
3
- ruby_version: 3.0