assembly-client 0.8.0 → 0.9.0
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 +1 -1
- data/bin/console +1 -1
- data/lib/assembly-client.rb +4 -0
- data/lib/assembly/version.rb +1 -1
- data/lib/{assembly.rb → assembly_client.rb} +0 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c8ba2414ca9812fc50d1df1b40a0d150a769e07
|
|
4
|
+
data.tar.gz: 752abc4cfbdd9cc77b315642a21c91c9ac88949a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e93ce2c5b53fb523ca9a21ae997da38beffbeb63e7574dea62184044e850c81f056fedfb86db8846318c39bb20063fb31f4b5d06bee3cda74027f32dd39c6a7b
|
|
7
|
+
data.tar.gz: 9a627dd08569f2d324bf251512baad11b38187b318f026d797bec1b102f2ed1e6e1eec72013e84f476683838ff096fe0fad2c2ba5e19dc26e0496543aff9fc44
|
data/README.md
CHANGED
|
@@ -15,7 +15,7 @@ gem 'assembly-client', '~> 0.8.0'
|
|
|
15
15
|
Some examples of how to pull information from the Assembly Platform API using the client Gem.
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
require 'assembly'
|
|
18
|
+
require 'assembly-client'
|
|
19
19
|
|
|
20
20
|
Assembly.configure do |config|
|
|
21
21
|
config.host = 'https://api-sandbox.assembly.education/' # For sandbox testing. Use https://api.assembly.education/ for production
|
data/bin/console
CHANGED
data/lib/assembly/version.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: assembly-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Assembly Education
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-03-
|
|
11
|
+
date: 2018-03-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -153,7 +153,7 @@ files:
|
|
|
153
153
|
- assembly-client.gemspec
|
|
154
154
|
- bin/console
|
|
155
155
|
- bin/setup
|
|
156
|
-
- lib/assembly.rb
|
|
156
|
+
- lib/assembly-client.rb
|
|
157
157
|
- lib/assembly/actions/create.rb
|
|
158
158
|
- lib/assembly/actions/delete.rb
|
|
159
159
|
- lib/assembly/actions/list.rb
|
|
@@ -187,6 +187,7 @@ files:
|
|
|
187
187
|
- lib/assembly/resource.rb
|
|
188
188
|
- lib/assembly/util.rb
|
|
189
189
|
- lib/assembly/version.rb
|
|
190
|
+
- lib/assembly_client.rb
|
|
190
191
|
homepage: http://platform.assembly.education
|
|
191
192
|
licenses:
|
|
192
193
|
- MIT
|