unflat 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: dc8cfe998ab7664e3e53c38f47413471a23653b4cd8d2ac7140aa36cd073c254
4
+ data.tar.gz: 5d62ace0054530990537983bdeb56d4b17d659f3a923a26c5a39e8bb0099e361
5
+ SHA512:
6
+ metadata.gz: 306855df8dbd25275e12295b1f48c66e7544310d341fa29c3e08636c1e463f229d196bd844ad3d159ceb8cb6c4e324a885bd13f11515d773765ab15c457aab6d
7
+ data.tar.gz: 9dfd86119d94efbc817a68d606229cd3d08ab5c487c94917bec0525ed83275c67ef8ffff5d273e88eef3fe59a6770c6af0948d2c82000b8538a6e48d32dfa411
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ .DS_Store
2
+ *.gem
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "unflat", path: "./"
4
+ gem "rake", "~> 12.0"
5
+ gem "rspec", "~> 3.0"
6
+ gem "rspec-retry"
7
+ gem "simplecov"
data/Gemfile.lock ADDED
@@ -0,0 +1,45 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ unflat (0.2.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.5.0)
10
+ docile (1.4.0)
11
+ rake (12.3.3)
12
+ rspec (3.12.0)
13
+ rspec-core (~> 3.12.0)
14
+ rspec-expectations (~> 3.12.0)
15
+ rspec-mocks (~> 3.12.0)
16
+ rspec-core (3.12.1)
17
+ rspec-support (~> 3.12.0)
18
+ rspec-expectations (3.12.2)
19
+ diff-lcs (>= 1.2.0, < 2.0)
20
+ rspec-support (~> 3.12.0)
21
+ rspec-mocks (3.12.4)
22
+ diff-lcs (>= 1.2.0, < 2.0)
23
+ rspec-support (~> 3.12.0)
24
+ rspec-retry (0.6.2)
25
+ rspec-core (> 3.3)
26
+ rspec-support (3.12.0)
27
+ simplecov (0.22.0)
28
+ docile (~> 1.1)
29
+ simplecov-html (~> 0.11)
30
+ simplecov_json_formatter (~> 0.1)
31
+ simplecov-html (0.12.3)
32
+ simplecov_json_formatter (0.1.4)
33
+
34
+ PLATFORMS
35
+ arm64-darwin-22
36
+
37
+ DEPENDENCIES
38
+ rake (~> 12.0)
39
+ rspec (~> 3.0)
40
+ rspec-retry
41
+ simplecov
42
+ unflat!
43
+
44
+ BUNDLED WITH
45
+ 2.3.26
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Sentry
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/Makefile ADDED
@@ -0,0 +1,3 @@
1
+ build:
2
+ bundle install
3
+ gem build unflat.gemspec
data/Rakefile ADDED
@@ -0,0 +1,13 @@
1
+ require "rake/clean"
2
+ CLOBBER.include "pkg"
3
+
4
+ require "bundler/gem_helper"
5
+ Bundler::GemHelper.install_tasks(name: "unflat")
6
+
7
+ require "rspec/core/rake_task"
8
+
9
+ RSpec::Core::RakeTask.new(:spec).tap do |task|
10
+ task.rspec_opts = "--order rand"
11
+ end
12
+
13
+ task :default => :spec
@@ -0,0 +1,3 @@
1
+ module Unflat
2
+ VERSION = "0.2.0"
3
+ end
data/lib/unflat.rb ADDED
@@ -0,0 +1,2 @@
1
+ module Unflat
2
+ end
data/unflat.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ require_relative "lib/unflat/version"
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "unflat"
5
+ spec.version = Unflat::VERSION
6
+ spec.authors = ["Unflat Team"]
7
+ spec.summary = "Unflat ruby gem"
8
+ spec.description = "A gem that provides a client interface for the Unflat service"
9
+ spec.email = ""
10
+ spec.license = 'MIT'
11
+ spec.homepage = "https://github.com/"
12
+
13
+ spec.platform = Gem::Platform::RUBY
14
+ spec.required_ruby_version = '>= 2.4'
15
+ spec.extra_rdoc_files = ["LICENSE.txt"]
16
+ spec.files = `git ls-files | grep -Ev '^(spec)'`.split("\n")
17
+
18
+ spec.metadata["homepage_uri"] = spec.homepage
19
+ spec.metadata["source_code_uri"] = spec.homepage
20
+ spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
21
+
22
+ spec.require_paths = ["lib"]
23
+ end
metadata ADDED
@@ -0,0 +1,56 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: unflat
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Unflat Team
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-03-25 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A gem that provides a client interface for the Unflat service
14
+ email: ''
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files:
18
+ - LICENSE.txt
19
+ files:
20
+ - ".gitignore"
21
+ - ".rspec"
22
+ - Gemfile
23
+ - Gemfile.lock
24
+ - LICENSE.txt
25
+ - Makefile
26
+ - Rakefile
27
+ - lib/unflat.rb
28
+ - lib/unflat/version.rb
29
+ - unflat.gemspec
30
+ homepage: https://github.com/
31
+ licenses:
32
+ - MIT
33
+ metadata:
34
+ homepage_uri: https://github.com/
35
+ source_code_uri: https://github.com/
36
+ changelog_uri: https://github.com//blob/master/CHANGELOG.md
37
+ post_install_message:
38
+ rdoc_options: []
39
+ require_paths:
40
+ - lib
41
+ required_ruby_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '2.4'
46
+ required_rubygems_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: '0'
51
+ requirements: []
52
+ rubygems_version: 3.4.9
53
+ signing_key:
54
+ specification_version: 4
55
+ summary: Unflat ruby gem
56
+ test_files: []