climbcomp 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7b4cb2df876bdd80876d1e513b5cbf3f07157e403018f0685f15018f9cc3ce0f
4
+ data.tar.gz: d943ded7e2101ef3639ace560545ca6d32fb1a68dcfa9ed17f1c8e689dab550b
5
+ SHA512:
6
+ metadata.gz: '09d9f7bafe9f87062c8dc060d9a256439c562286d12c8ecead57ae4cc56f88e1421a25c8111be3a6a287ba17c75c46d9844e739d828f6cc11d668cde410dc2f4'
7
+ data.tar.gz: 12be91ca555a4a4797e226c062a5a65e6844497a9083f42a8a8657d7d4b6a2c723a271690415331f7d43aeb71b54ef695dfff9cc2e37befcc039b97758a0be9d
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 ClimbComp
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 all
13
+ 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 THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # climbcomp-ruby
2
+ Generated from https://github.com/climbcomp/climbcomp-proto
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
data/exe/climbcomp ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'climbcomp'
4
+
5
+ puts "Climbcomp CLI v#{Climbcomp::VERSION} (Ruby #{RUBY_VERSION})"
@@ -0,0 +1,5 @@
1
+
2
+ module Climbcomp
3
+ VERSION_PATH = File.expand_path(File.join(__dir__, '..', '..', 'VERSION')).freeze
4
+ VERSION = IO.readlines(VERSION_PATH).first.to_s.chomp.freeze
5
+ end
data/lib/climbcomp.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "climbcomp/version"
2
+
3
+ module Climbcomp
4
+ class Error < StandardError; end
5
+ # Your code goes here...
6
+ end
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: climbcomp
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Skip Baney
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-08-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.17'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.17'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ description: Generated gRPC artifacts from https://github.com/climbcomp/climbcomp-proto
56
+ email:
57
+ - twelvelabs@gmail.com
58
+ executables:
59
+ - climbcomp
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - LICENSE
64
+ - README.md
65
+ - VERSION
66
+ - exe/climbcomp
67
+ - lib/climbcomp.rb
68
+ - lib/climbcomp/version.rb
69
+ homepage: https://github.com/climbcomp/climbcomp-ruby
70
+ licenses: []
71
+ metadata:
72
+ allowed_push_host: https://rubygems.org
73
+ homepage_uri: https://github.com/climbcomp/climbcomp-ruby
74
+ source_code_uri: https://github.com/climbcomp/climbcomp-ruby
75
+ changelog_uri: https://github.com/climbcomp/climbcomp-proto/CHANGELOG.md
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubygems_version: 3.0.3
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: Climbcomp gRPC files
95
+ test_files: []