utcd 0.2.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.
data/utcd.gemspec ADDED
@@ -0,0 +1,29 @@
1
+ require_relative 'lib/utcd/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = 'utcd'
5
+ spec.version = Utcd::VERSION
6
+ spec.authors = ['Rodrigo']
7
+ spec.email = ['headStyleColorRed@gmail.com']
8
+
9
+ spec.summary = 'Write a short summary, because RubyGems requires one.'
10
+ spec.description = 'Write a longer description or delete this line.'
11
+ spec.homepage = "https://github.com/headStyleColorRed/utcd.git"
12
+ spec.license = 'MIT'
13
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
14
+
15
+ # spec.metadata['allowed_push_host'] = "https://gems.my-company.example"
16
+
17
+ spec.metadata['homepage_uri'] = spec.homepage
18
+ spec.metadata['source_code_uri'] = "https://github.com/headStyleColorRed/utcd.git"
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
23
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
24
+ end
25
+ spec.bindir = 'exe'
26
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ['lib']
28
+ # spec.metadata['rubygems_mfa_required'] = 'true'
29
+ end
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: utcd
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Rodrigo
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-07-07 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Write a longer description or delete this line.
14
+ email:
15
+ - headStyleColorRed@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".DS_Store"
21
+ - ".gitignore"
22
+ - ".rspec"
23
+ - ".rubocop.yml"
24
+ - ".travis.yml"
25
+ - ".vscode/launch.json"
26
+ - Gemfile
27
+ - Gemfile.lock
28
+ - LICENSE.txt
29
+ - README.md
30
+ - Rakefile
31
+ - bin/console
32
+ - bin/rspec
33
+ - bin/setup
34
+ - lib/api.rb
35
+ - lib/constants.rb
36
+ - lib/network.rb
37
+ - lib/queries.rb
38
+ - lib/tools.rb
39
+ - lib/utcd.rb
40
+ - lib/utcd/version.rb
41
+ - schema.json
42
+ - utcd.gemspec
43
+ homepage: https://github.com/headStyleColorRed/utcd.git
44
+ licenses:
45
+ - MIT
46
+ metadata:
47
+ homepage_uri: https://github.com/headStyleColorRed/utcd.git
48
+ source_code_uri: https://github.com/headStyleColorRed/utcd.git
49
+ post_install_message:
50
+ rdoc_options: []
51
+ require_paths:
52
+ - lib
53
+ required_ruby_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: 2.5.0
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ requirements: []
64
+ rubygems_version: 3.1.6
65
+ signing_key:
66
+ specification_version: 4
67
+ summary: Write a short summary, because RubyGems requires one.
68
+ test_files: []