rokka_client_codegen 0.0.1 → 0.0.5
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 +20 -9
- data/config.json +7 -1
- data/lib/rokka_client_codegen/version.rb +1 -1
- data/patches/README.patch +39 -9
- data/rokka_client_codegen.gemspec +2 -2
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00cfc23dc523b460f268416da61ea31addd2c99462b8ae4b4cd446c5a879849c
|
|
4
|
+
data.tar.gz: b012492cbb94c74349263dd1edd9d6bd197389eeb5239d586ebfbf01f417f0d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c1166f5b8d5b340dc1bc0f60d7bd5332243668ee73d5234e0f7954fb9244e06bbaa7cfd727dfbbbb3865448c26b3f487a603cd9c009eb8c490a79ca6ed08c8c
|
|
7
|
+
data.tar.gz: 9d12aa15fa21241bd36019caebd14a0d89b5d989582a5343ee5394a7ec41990de9dea50787b388197392a00fc220922a9c443e9885cc160eff6bfba7b36e8ca5
|
data/README.md
CHANGED
|
@@ -6,15 +6,26 @@ See the [examples](examples/) directory for some simple rokka specific examples.
|
|
|
6
6
|
|
|
7
7
|
A thin wrapper package for using this to make some things easier would be welcome. We're [happy to help](https://rokka.io/en/contact/).
|
|
8
8
|
|
|
9
|
-
The gem is currently nowhere published, you have to build it yourself (see below). But if needed, we will publish it.
|
|
10
|
-
|
|
11
9
|
- API version: 1.0.0
|
|
12
|
-
- Package version: 0.0.
|
|
13
|
-
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
|
10
|
+
- Package version: 0.0.5
|
|
14
11
|
|
|
15
12
|
## Installation
|
|
16
13
|
|
|
17
|
-
###
|
|
14
|
+
### Use the gem from rubygems.org
|
|
15
|
+
|
|
16
|
+
Add this to your Gemfile:
|
|
17
|
+
|
|
18
|
+
```shell
|
|
19
|
+
gem 'rokka_client_codegen', '~> 0.0.5'
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Or install it with:
|
|
23
|
+
```shell
|
|
24
|
+
gem install rokka_client_codegen
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Build a gem from source
|
|
18
29
|
|
|
19
30
|
To build the Ruby code into a gem:
|
|
20
31
|
|
|
@@ -25,21 +36,21 @@ gem build rokka_client_codegen.gemspec
|
|
|
25
36
|
Then either install the gem locally:
|
|
26
37
|
|
|
27
38
|
```shell
|
|
28
|
-
gem install ./rokka_client_codegen-0.0.
|
|
39
|
+
gem install ./rokka_client_codegen-0.0.5.gem
|
|
29
40
|
```
|
|
30
|
-
(for development, run `gem install --dev ./rokka_client_codegen-0.0.
|
|
41
|
+
(for development, run `gem install --dev ./rokka_client_codegen-0.0.5.gem` to install the development dependencies)
|
|
31
42
|
|
|
32
43
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
33
44
|
|
|
34
45
|
Finally add this to the Gemfile:
|
|
35
46
|
|
|
36
|
-
gem 'rokka_client_codegen', '~> 0.0.
|
|
47
|
+
gem 'rokka_client_codegen', '~> 0.0.5'
|
|
37
48
|
|
|
38
49
|
### Install from Git
|
|
39
50
|
|
|
40
51
|
If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:
|
|
41
52
|
|
|
42
|
-
gem 'rokka_client_codegen', :git => 'https://github.com/
|
|
53
|
+
gem 'rokka_client_codegen', :git => 'https://github.com/rokka-io/rokka-ruby-codegen.git'
|
|
43
54
|
|
|
44
55
|
### Include the Ruby code directly
|
|
45
56
|
|
data/config.json
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"gemVersion": "0.0.
|
|
2
|
+
"gemVersion": "0.0.5",
|
|
3
3
|
"moduleName": "RokkaClientCodegen",
|
|
4
|
+
"gemLicense": "MIT",
|
|
5
|
+
"gemName": "rokka_client_codegen",
|
|
6
|
+
"gemAuthor": "rokka",
|
|
7
|
+
"gemAuthorEmail": "rokka@rokka.io",
|
|
8
|
+
"gemDescription": "A rokka client for ruby.",
|
|
9
|
+
"gemHomepage": "https://github.com/rokka-io/rokka-ruby-codegen",
|
|
4
10
|
"gemLicense": "MIT"
|
|
5
11
|
}
|
data/patches/README.patch
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
diff --git
|
|
2
|
-
index
|
|
3
|
-
---
|
|
4
|
-
+++
|
|
5
|
-
@@ -1,
|
|
1
|
+
diff --git b/README.md a/README.md
|
|
2
|
+
index 5045008..95f0fe7 100644
|
|
3
|
+
--- b/README.md
|
|
4
|
+
+++ a/README.md
|
|
5
|
+
@@ -1,18 +1,31 @@
|
|
6
6
|
# rokka_client_codegen
|
|
7
7
|
|
|
8
8
|
-RokkaClientCodegen - the Ruby gem for the rokka.io
|
|
@@ -13,12 +13,42 @@ index ccc7ce3..29d7557 100644
|
|
|
13
13
|
|
|
14
14
|
-This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
15
15
|
+A thin wrapper package for using this to make some things easier would be welcome. We're [happy to help](https://rokka.io/en/contact/).
|
|
16
|
-
+
|
|
17
|
-
+The gem is currently nowhere published, you have to build it yourself (see below). But if needed, we will publish it.
|
|
18
16
|
|
|
19
17
|
- API version: 1.0.0
|
|
20
|
-
- Package version: 0.0.
|
|
21
|
-
|
|
18
|
+
- Package version: 0.0.5
|
|
19
|
+
-- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
|
20
|
+
|
|
21
|
+
## Installation
|
|
22
|
+
|
|
23
|
+
-### Build a gem
|
|
24
|
+
+### Use the gem from rubygems.org
|
|
25
|
+
+
|
|
26
|
+
+Add this to your Gemfile:
|
|
27
|
+
+
|
|
28
|
+
+```shell
|
|
29
|
+
+gem 'rokka_client_codegen', '~> 0.0.5'
|
|
30
|
+
+```
|
|
31
|
+
+
|
|
32
|
+
+Or install it with:
|
|
33
|
+
+```shell
|
|
34
|
+
+gem install rokka_client_codegen
|
|
35
|
+
+```
|
|
36
|
+
+
|
|
37
|
+
+
|
|
38
|
+
+### Build a gem from source
|
|
39
|
+
|
|
40
|
+
To build the Ruby code into a gem:
|
|
41
|
+
|
|
42
|
+
@@ -37,7 +50,7 @@ Finally add this to the Gemfile:
|
|
43
|
+
|
|
44
|
+
If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:
|
|
45
|
+
|
|
46
|
+
- gem 'rokka_client_codegen', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'
|
|
47
|
+
+ gem 'rokka_client_codegen', :git => 'https://github.com/rokka-io/rokka-ruby-codegen.git'
|
|
48
|
+
|
|
49
|
+
### Include the Ruby code directly
|
|
50
|
+
|
|
51
|
+
@@ -49,37 +62,7 @@ ruby -Ilib script.rb
|
|
22
52
|
|
|
23
53
|
## Getting Started
|
|
24
54
|
|
|
@@ -21,9 +21,9 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
s.platform = Gem::Platform::RUBY
|
|
22
22
|
s.authors = ["rokka"]
|
|
23
23
|
s.email = ["rokka@rokka.io"]
|
|
24
|
-
s.homepage = "https://github.com/rokka-io/
|
|
24
|
+
s.homepage = "https://github.com/rokka-io/rokka-ruby-codegen"
|
|
25
25
|
s.summary = "rokka.io Ruby Gem"
|
|
26
|
-
s.description = "
|
|
26
|
+
s.description = "A rokka client for ruby."
|
|
27
27
|
s.license = "MIT"
|
|
28
28
|
s.required_ruby_version = ">= 1.9"
|
|
29
29
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rokka_client_codegen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- rokka
|
|
@@ -190,8 +190,7 @@ dependencies:
|
|
|
190
190
|
- - ">="
|
|
191
191
|
- !ruby/object:Gem::Version
|
|
192
192
|
version: 0.2.12
|
|
193
|
-
description:
|
|
194
|
-
[Changelog](https://api.rokka.io/changelog.md).
|
|
193
|
+
description: A rokka client for ruby.
|
|
195
194
|
email:
|
|
196
195
|
- rokka@rokka.io
|
|
197
196
|
executables: []
|
|
@@ -280,7 +279,7 @@ files:
|
|
|
280
279
|
- spec/models/user_definition_spec.rb
|
|
281
280
|
- spec/models/user_spec.rb
|
|
282
281
|
- spec/spec_helper.rb
|
|
283
|
-
homepage: https://github.com/rokka-io/
|
|
282
|
+
homepage: https://github.com/rokka-io/rokka-ruby-codegen
|
|
284
283
|
licenses:
|
|
285
284
|
- MIT
|
|
286
285
|
metadata: {}
|