rustybars 0.2.0-x86_64-darwin

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 10d28f63d19ab8a6d79a0acaa3f8683e654a2590219b1e9c12b176be0b66659d
4
+ data.tar.gz: 96e14a82e469d86f50ca2cbddaceb9644487bac9e769eaab8ca83a18a0a10cea
5
+ SHA512:
6
+ metadata.gz: 296d4ca28bdc40f7eb6208847536b5b04d8284f41d910b737f1baef0c5b2dd04ed8b9ef1fbeebbb4d9060c9470ea55c09be3246885419618a4c22cccd9118627
7
+ data.tar.gz: 365574ddf850aa2f79436599b5f438e2f237daf5b9dde173805fe959adc2dce69754d6553e343c1be1663247773cb1b858832166553d12528a7c17526593822a
Binary file
Binary file
Binary file
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rustybars
4
+ VERSION = "0.2.0"
5
+ end
data/lib/rustybars.rb ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "rustybars/version"
4
+
5
+ # Load extension
6
+ begin
7
+ RUBY_VERSION =~ /(\d+\.\d+)/
8
+ require_relative "rustybars/#{Regexp.last_match(1)}/rustybars"
9
+ rescue LoadError
10
+ require_relative "rustybars/rustybars"
11
+ end
12
+
13
+ module Rustybars
14
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rustybars
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: x86_64-darwin
6
+ authors:
7
+ - Andriy Yanko
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-01-29 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - andriy.yanko@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/rustybars.rb
21
+ - lib/rustybars/3.1/rustybars.bundle
22
+ - lib/rustybars/3.2/rustybars.bundle
23
+ - lib/rustybars/3.3/rustybars.bundle
24
+ - lib/rustybars/version.rb
25
+ homepage: https://github.com/ayanko/rustybars
26
+ licenses:
27
+ - MIT
28
+ metadata: {}
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '3.1'
38
+ - - "<"
39
+ - !ruby/object:Gem::Version
40
+ version: 3.4.dev
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: 3.3.11
46
+ requirements: []
47
+ rubygems_version: 3.4.4
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: Ruby binding for handlebars-rust
51
+ test_files: []