couchbase-columnar 0.1.0.dp.1

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: ce4b9080d387136d8011599c4f92cc6e01416b5653826028fbdcfcef890a202a
4
+ data.tar.gz: 5c804ed81afc756fd1bd86791a4466b296554342a040016975068dca574f123d
5
+ SHA512:
6
+ metadata.gz: 2149f982c46f5198f1eeb9cbeb6e27c768e1638f08121a60021ee852ebfb24faba4a1709cefa7fb018fd20da2ba125b0f989348e6e3236a73464eaf3ddd3e00c
7
+ data.tar.gz: '09bf7eb8c9499fc54a2c5d0eb27effd1baea8f8fbd8a333b00a5c7b06e16f016934998ef121bdd72d1ad21c3d7bfeeb166ff19bb5e0fc952588dca56dc934242'
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.standard.yml ADDED
@@ -0,0 +1,3 @@
1
+ # For available configuration options, see:
2
+ # https://github.com/standardrb/standard
3
+ ruby_version: 2.6
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2024-04-05
4
+
5
+ - Initial release
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Couchbase::Columnar
2
+
3
+ ## Installation
4
+
5
+ Install the gem and add to the application's Gemfile by executing:
6
+
7
+ $ bundle add couchbase-columnar
8
+
9
+ If bundler is not being used to manage dependencies, install the gem by executing:
10
+
11
+ $ gem install couchbase-columnar
12
+
13
+ ## Usage
14
+
15
+
16
+ ## Development
17
+
18
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run
19
+ the tests. You can also run `bin/console` for an interactive prompt that will allow you to
20
+ experiment.
21
+
22
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new
23
+ version, update the version number in `version.rb`, and then run `bundle exec rake release`, which
24
+ will create a git tag for the version, push git commits and the created tag, and push the `.gem`
25
+ file to [rubygems.org](https://rubygems.org).
26
+
27
+ ## Contributing
28
+
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/couchbaselabs/couchbase-columnar.
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "standard/rake"
9
+
10
+ task default: %i[spec standard]
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Couchbase
4
+ module Columnar
5
+ VERSION = "0.1.0.dp.1"
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "columnar/version"
4
+
5
+ module Couchbase
6
+ module Columnar
7
+ class Error < StandardError; end
8
+ # Your code goes here...
9
+ end
10
+ end
@@ -0,0 +1,6 @@
1
+ module Couchbase
2
+ module Columnar
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: couchbase-columnar
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0.dp.1
5
+ platform: ruby
6
+ authors:
7
+ - Sergey Avseyev
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-04-05 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: This library implements protocol and high level API for accessing Couchbase
14
+ Columnar database.
15
+ email:
16
+ - sergey.avseyev@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ".rspec"
22
+ - ".standard.yml"
23
+ - CHANGELOG.md
24
+ - README.md
25
+ - Rakefile
26
+ - lib/couchbase/columnar.rb
27
+ - lib/couchbase/columnar/version.rb
28
+ - sig/couchbase/columnar.rbs
29
+ homepage: https://github.com/couchbaselabs/couchbase-coumnar-ruby
30
+ licenses: []
31
+ metadata:
32
+ homepage_uri: https://github.com/couchbaselabs/couchbase-coumnar-ruby
33
+ source_code_uri: https://github.com/couchbaselabs/couchbase-coumnar-ruby
34
+ changelog_uri: https://github.com/couchbaselabs/couchbase-ruby-columnar/blob/main/CHANGELOG.md
35
+ post_install_message:
36
+ rdoc_options: []
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 2.6.0
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ requirements: []
50
+ rubygems_version: 3.5.3
51
+ signing_key:
52
+ specification_version: 4
53
+ summary: The client library for Couchbase Columnar database
54
+ test_files: []