yamlfish 0.1.0.rc1 → 0.1.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +33 -1
- data/lib/yamlfish/cli/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f39e202ade947987febfd14899b18b537a9545ef093d4a8ecf6b45cabf980bd4
|
4
|
+
data.tar.gz: f4efc6422f4d8526d8ae5203ff2569ccb0d1a25c71d128f98f4a4079c57d6d80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34a6c43f12db61c42e218cdc5e5e43d7dd6d85b88738deb86c40cec8ed3059df219b44e24caa5fe248f9f99b34cbebc6bc1a96fa3dca038963744c5a25736fc9
|
7
|
+
data.tar.gz: 440223976ca8416174716d2bda1994929592a53747445aef8fea82da78a6fc4647614bc0784f25c39e27c59cb8f1ddc4bd9736ef0dddc0f07f81b878325fb398
|
data/README.md
CHANGED
@@ -1 +1,33 @@
|
|
1
|
-
#
|
1
|
+
# YAMLFish CLI
|
2
|
+
|
3
|
+
This is the command line interface for [YAMLFish](https:s://yamlfish.dev), the simple and powerful translation management platform.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
The YAMLFish CLI is available as a Ruby gem.
|
8
|
+
First, make sure you have Ruby installed on your machine. You can follow the [official Ruby installation guide](https://www.ruby-lang.org/en/documentation/installation/) for your operating system.
|
9
|
+
|
10
|
+
Then, to install the YAMLFish CLI, run:
|
11
|
+
|
12
|
+
```bash
|
13
|
+
gem install yamlfish --pre
|
14
|
+
```
|
15
|
+
|
16
|
+
YAMLFish is still in beta, hence the `--pre` flag to install the latest RC.
|
17
|
+
|
18
|
+
## Configuration
|
19
|
+
|
20
|
+
Before you can use the YAMLFish CLI, you need to configure it with your API key and project token.
|
21
|
+
|
22
|
+
To do this, create a `.yamlfish.yml` file in your project's root directory with the following content:
|
23
|
+
|
24
|
+
```yaml
|
25
|
+
api_key: YOUR_API_KEY
|
26
|
+
project_token: YOUR_PROJECT_TOKEN
|
27
|
+
```
|
28
|
+
|
29
|
+
Those secrets can be found in the footer of your project's page on YAMLFish.
|
30
|
+
|
31
|
+
## Usage
|
32
|
+
|
33
|
+
For usage instructions, please refer to the [official documentation](https://yamlfish.dev/docs/).
|
data/lib/yamlfish/cli/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yamlfish
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.0.
|
4
|
+
version: 0.1.0.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrien Siami
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -94,6 +94,7 @@ homepage: https://yamlfish.dev
|
|
94
94
|
licenses:
|
95
95
|
- MIT
|
96
96
|
metadata:
|
97
|
+
source_code_uri: https://github.com/yamlfish/yamlfish-cli
|
97
98
|
homepage_uri: https://yamlfish.dev
|
98
99
|
post_install_message:
|
99
100
|
rdoc_options: []
|