swimming_fish 0.1.0 → 0.1.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 +4 -4
- data/README.md +7 -24
- data/lib/swimming_fish/version.rb +1 -1
- data/lib/swimming_fish.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e49cee885a3be14be5e148fc2586d13000a51ee35201e5f9f543b29406bb089a
|
4
|
+
data.tar.gz: d4692a589e59a6239ca32cb3188a463418bef35d16e94c38ad2a2e0ad7abf533
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d73b9c0a216983974626f184c502bf38606e828b13f25a6bbe6810e85a3b90aa9f0d8ce5a4e06a93fe5298cb787a29fe8d216cbe374c09ba519073cd4b4b38f6
|
7
|
+
data.tar.gz: 8d2ead8ba873518f0c7d6309cccb437ddf3b12812247cb7f83710d77dc93111488c0b7726c0b8cbfe22fca5375c5037cebfcf7dcc87723fd64b85b2148eba731
|
data/README.md
CHANGED
@@ -1,35 +1,18 @@
|
|
1
1
|
# SwimmingFish
|
2
2
|
|
3
|
-
TODO: Delete this and the text below, and describe your gem
|
4
|
-
|
5
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/swimming_fish`. To experiment with that code, run `bin/console` for an interactive prompt.
|
6
|
-
|
7
3
|
## Installation
|
8
4
|
|
9
|
-
|
10
|
-
|
11
|
-
Install the gem and add to the application's Gemfile by executing:
|
12
|
-
|
13
|
-
```bash
|
14
|
-
bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
|
15
|
-
```
|
16
|
-
|
17
|
-
If bundler is not being used to manage dependencies, install the gem by executing:
|
5
|
+
Gemfileに以下のように記載してください。
|
18
6
|
|
19
7
|
```bash
|
20
|
-
gem
|
8
|
+
gem 'swimming_fish', '~> 0.1.0'
|
21
9
|
```
|
22
10
|
|
23
11
|
## Usage
|
24
12
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
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).
|
32
|
-
|
33
|
-
## Contributing
|
13
|
+
小さな魚群を泳がせて、ログの場所が分かりやすくなるgemです。
|
14
|
+
ログを記載する手前で以下のように記述してください。
|
15
|
+
```ruby
|
16
|
+
Fish.swimming
|
17
|
+
```
|
34
18
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/swimming_fish.
|
data/lib/swimming_fish.rb
CHANGED
@@ -5,7 +5,7 @@ require_relative "swimming_fish/version"
|
|
5
5
|
module Fish
|
6
6
|
class Error < StandardError; end
|
7
7
|
# Your code goes here...
|
8
|
-
def self.
|
8
|
+
def self.swim
|
9
9
|
pp "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
|
10
10
|
pp " >>ログデバッグ魚群到来<< "
|
11
11
|
pp "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: swimming_fish
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- YmzknA
|
@@ -10,7 +10,7 @@ bindir: exe
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2025-03-17 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description: ログに魚を泳がしたかったので作成しました
|
14
14
|
email:
|
15
15
|
- taiyo.yamazaki.35b@gmail.com
|
16
16
|
executables: []
|