midjourney-ruby 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 +14 -9
- data/lib/midjourney/ruby/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 727ce777e01b7a609b901f0eeb3b27c2f0568eb9f27c126a5e31391202afd8c4
|
4
|
+
data.tar.gz: dd12224e8cd69ceaf548221db086f3b009456aa594a30fe438786f111e0a0c42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93b06c02f6ece38ef9fa4847d89b540ea8a08c5e519867349be534028ec725442b39608a975b387d713d2a6d21dfc73e9ecd36139563f6b265e8189d7d12c5ae
|
7
|
+
data.tar.gz: 9047f70dd745f3a996ff9d7b74a8f4b6e470f7da664e97c83ab53765042d014ca0fda4964360c56f667e0c34d005ba8bf68923ae08492822063c145cbc94be93
|
data/README.md
CHANGED
@@ -1,21 +1,25 @@
|
|
1
|
-
# Midjourney
|
1
|
+
# Midjourney Ruby
|
2
2
|
|
3
|
+
Midjourney is an awesome tool that brings great value to products.
|
4
|
+
This gem was created to facilitate Ruby and also Rails applications to use all services of Midjourney directly.
|
3
5
|
|
4
|
-
|
6
|
+
Keep in mind that you need to have a Midjourney account to use this gem, checkout [Midjourney](https://midjourney.com) for more information.
|
5
7
|
|
6
|
-
|
8
|
+
## Installation
|
7
9
|
|
8
|
-
|
10
|
+
Add the following to your Gemfile:
|
9
11
|
|
10
|
-
|
12
|
+
```shell
|
13
|
+
gem "midjourney-ruby"
|
14
|
+
```
|
11
15
|
|
12
|
-
|
16
|
+
Run `bundle install`.
|
13
17
|
|
14
|
-
|
18
|
+
That's it. You are now ready to go!
|
15
19
|
|
16
20
|
## Usage
|
17
21
|
|
18
|
-
|
22
|
+
### Imagine
|
19
23
|
|
20
24
|
## Development
|
21
25
|
|
@@ -25,8 +29,9 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
25
29
|
|
26
30
|
## Contributing
|
27
31
|
|
28
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
32
|
+
Bug reports and pull requests are welcome on GitHub at [Open an Issue](https://github.com/leom806/midjourney-ruby).
|
29
33
|
|
30
34
|
## License
|
31
35
|
|
32
36
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
37
|
+
Feel free to use it and contribute.
|