nakuru 0.1.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: 4cbf55ac7eac5c1a064d41dfa1ea5bcfe0fdcb7f9e2646e07ce8cbe7e27748f0
4
+ data.tar.gz: f483c908babe5a67fbbd244de977584edcc35d9bdd3ee1976f0d5238584ab30a
5
+ SHA512:
6
+ metadata.gz: 122504a3fe9d4131dc0f3e517bc59616ab68c5cb8b5fed4e753a6f6f36b16af49988e4d44a7b13ac5f78d3e28b83a27223e9fdfbce23c624b4f938ea92b8bbd5
7
+ data.tar.gz: ec034e310dc5a0ff82f4b43f40f99bd53aba114b8c20711b0e25917854460d7cc39e7d186322785a1197d1c5fd93df66648414460a44b9f7371c0b9614562291
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Nakuru
2
+
3
+ A bridge between Ruby and Spinel.
4
+
5
+ ## Installation
6
+
7
+ Install the gem and add to the application's Gemfile by executing:
8
+
9
+ ```bash
10
+ bundle add nakuru
11
+ ```
12
+
13
+ If bundler is not being used to manage dependencies, install the gem by executing:
14
+
15
+ ```bash
16
+ gem install nakuru
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/junk0612/nakuru.
data/Rakefile ADDED
@@ -0,0 +1,12 @@
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 "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
data/exe/nakuru ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "nakuru"
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Nakuru
4
+ VERSION = "0.1.0"
5
+ end
data/lib/nakuru.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "nakuru/version"
4
+
5
+ module Nakuru
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
data/sig/nakuru.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Nakuru
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nakuru
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Junichi Kobayashi
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: A bridge between Ruby and Spinel.
13
+ email:
14
+ - nnujabok@gmail.com
15
+ executables:
16
+ - nakuru
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - Rakefile
22
+ - exe/nakuru
23
+ - lib/nakuru.rb
24
+ - lib/nakuru/version.rb
25
+ - sig/nakuru.rbs
26
+ homepage: https://github.com/junk0612/nakuru
27
+ licenses: []
28
+ metadata:
29
+ homepage_uri: https://github.com/junk0612/nakuru
30
+ source_code_uri: https://github.com/junk0612/nakuru
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: 3.2.0
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 4.0.12
46
+ specification_version: 4
47
+ summary: A bridge between Ruby and Spinel.
48
+ test_files: []