zafiro 0.1.0 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of zafiro might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +10 -0
- data/bin/console +11 -0
- data/bin/setup +8 -0
- data/lib/zafiro/generators/install/install_generator.rb +11 -0
- data/lib/zafiro/generators/install/templates/zafiro.css +4 -0
- data/lib/zafiro/version.rb +1 -1
- data/lib/zafiro.rb +1 -0
- data/zafiro.gemspec +35 -0
- metadata +8 -3
- data/.standard.yml +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a9688cb9fbe58081e836f584a466bb52c03eaefacf9d434fd409de96701e712
|
4
|
+
data.tar.gz: f1b93af65084271f9eb9edcd1dd4389c7e50cda4edf628f8d1e5dff985518e1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfa5ce4e5b89987607c1f470c8cc916d7454932996ff3ed3d8df25effb24bfc2fe114263616b011ff1396d8b58353dd378279324f7c8ae5371bb2298388ff7a6
|
7
|
+
data.tar.gz: 7d9e1a26d0a04e2b152921801c3c2ffa1c7f72154deb03c5ddcf9c0a01e054986c72969a268fc63a024bf46189a8d25b5fa8af81d6bee88c28dc241b715e2283
|
data/Gemfile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require "bundler/setup"
|
5
|
+
require "zafiro"
|
6
|
+
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
9
|
+
|
10
|
+
require "irb"
|
11
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/lib/zafiro/version.rb
CHANGED
data/lib/zafiro.rb
CHANGED
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.
|
4
|
+
version: 0.1.3
|
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-
|
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,15 +18,20 @@ executables: []
|
|
18
18
|
extensions: []
|
19
19
|
extra_rdoc_files: []
|
20
20
|
files:
|
21
|
-
- ".standard.yml"
|
22
21
|
- CHANGELOG.md
|
23
22
|
- CODE_OF_CONDUCT.md
|
23
|
+
- Gemfile
|
24
24
|
- LICENSE.txt
|
25
25
|
- README.md
|
26
26
|
- Rakefile
|
27
|
+
- bin/console
|
28
|
+
- bin/setup
|
27
29
|
- lib/zafiro.rb
|
30
|
+
- lib/zafiro/generators/install/install_generator.rb
|
31
|
+
- lib/zafiro/generators/install/templates/zafiro.css
|
28
32
|
- lib/zafiro/version.rb
|
29
33
|
- sig/zafiro.rbs
|
34
|
+
- zafiro.gemspec
|
30
35
|
homepage: https://github.com/nicobertin/zafiro
|
31
36
|
licenses:
|
32
37
|
- MIT
|
data/.standard.yml
DELETED