blueprint_ruby_client 0.4.0 → 0.4.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 +5 -6
- data/config.json +1 -1
- data/lib/blueprint_ruby_client.rb +0 -1
- data/lib/blueprint_ruby_client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 950dcd0e5828701d57664fdeeca5d7f1b705e4f2
|
4
|
+
data.tar.gz: 7d06282db9af1446f042080c8689e062230d209f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c46737857fd97385e1360a8ad3ffc1d6614305ae6b610fece9da6f2c28198e2cf7c2e057e9600f8b600916013069e532738ea0c450cdaef5a1e809f6e3581c70
|
7
|
+
data.tar.gz: b0463f12766a6167cc3f92fdb4aefac5b3f8c99844f60e113fc4f05bb9aea99cb762559e90c64aa944c47151300f6038a1f5bd02fe9e6bd2f961cfbf13df8658
|
data/README.md
CHANGED
@@ -7,8 +7,8 @@ This is the API documentation for [Blueprint](https://github.com/talis/blueprint
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
8
8
|
|
9
9
|
- API version: 1.0.0
|
10
|
-
- Package version: 0.4.
|
11
|
-
- Build date: 2016-06-
|
10
|
+
- Package version: 0.4.1
|
11
|
+
- Build date: 2016-06-03T14:12:48.656-04:00
|
12
12
|
- Build package: class io.swagger.codegen.languages.RubyClientCodegen
|
13
13
|
|
14
14
|
## Installation
|
@@ -34,15 +34,15 @@ gem build blueprint_ruby_client.gemspec
|
|
34
34
|
Then either install the gem locally:
|
35
35
|
|
36
36
|
```shell
|
37
|
-
gem install ./blueprint_ruby_client-0.4.
|
37
|
+
gem install ./blueprint_ruby_client-0.4.1.gem
|
38
38
|
```
|
39
|
-
(for development, run `gem install --dev ./blueprint_ruby_client-0.4.
|
39
|
+
(for development, run `gem install --dev ./blueprint_ruby_client-0.4.1.gem` to install the development dependencies)
|
40
40
|
|
41
41
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
42
42
|
|
43
43
|
Finally add this to the Gemfile:
|
44
44
|
|
45
|
-
gem 'blueprint_ruby_client', '~> 0.4.
|
45
|
+
gem 'blueprint_ruby_client', '~> 0.4.1'
|
46
46
|
|
47
47
|
### Install from Git
|
48
48
|
|
@@ -122,7 +122,6 @@ Class | Method | HTTP request | Description
|
|
122
122
|
## Documentation for Models
|
123
123
|
|
124
124
|
- [BlueprintClient::Asset](docs/Asset.md)
|
125
|
-
- [BlueprintClient::AssetAttributes](docs/AssetAttributes.md)
|
126
125
|
- [BlueprintClient::AssetBody](docs/AssetBody.md)
|
127
126
|
- [BlueprintClient::AssetRelationship](docs/AssetRelationship.md)
|
128
127
|
- [BlueprintClient::AssetResultSet](docs/AssetResultSet.md)
|
data/config.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"gemName": "blueprint_ruby_client",
|
3
3
|
"moduleName": "BlueprintClient",
|
4
|
-
"gemVersion": "0.4.
|
4
|
+
"gemVersion": "0.4.1",
|
5
5
|
"gemLicense": "Copyright Talis Education Ltd",
|
6
6
|
"gemHomepage": "https://github.com/talis/blueprint_rb",
|
7
7
|
"gemSummary": "A ruby API wrapper for Blueprint",
|
@@ -18,7 +18,6 @@ require 'blueprint_ruby_client/configuration'
|
|
18
18
|
|
19
19
|
# Models
|
20
20
|
require 'blueprint_ruby_client/models/asset'
|
21
|
-
require 'blueprint_ruby_client/models/asset_attributes'
|
22
21
|
require 'blueprint_ruby_client/models/asset_body'
|
23
22
|
require 'blueprint_ruby_client/models/asset_relationship'
|
24
23
|
require 'blueprint_ruby_client/models/asset_result_set'
|