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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ff552ab04ec9fcea65b66f82f85ae84c9ce6e93
4
- data.tar.gz: c4262f9cf68b8302dae99cd917b12ef00444b0bd
3
+ metadata.gz: 6c8ba2414ca9812fc50d1df1b40a0d150a769e07
4
+ data.tar.gz: 752abc4cfbdd9cc77b315642a21c91c9ac88949a
5
5
  SHA512:
6
- metadata.gz: b253d758a6a49bb9ce56ae80be3dd550f068e372fbb9bf3b8fbb1ad6b5123771ff7bd9e3f7b370bdc8df1eecf3d551baddaac785d9862069e76b0aa6c9f382d6
7
- data.tar.gz: a938ac4b6da2e41faf5bcde435296d470ed1fc641e37ddacda9251188ee7caaec478e4e109dfb6bd76dc14fe8de179064262f2d1150bd63202e3cf10a3efbaf8
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
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "assembly"
4
+ require "assembly_client"
5
5
 
6
6
  Assembly.configure do |config|
7
7
  config.token = '3z1678w3qstvanq6x1r8f0b2mcjefjv'
@@ -0,0 +1,4 @@
1
+ #
2
+ # This offers the user more idiomatic way to require 'assembly_client'
3
+ #
4
+ require File.dirname(__FILE__) + '/assembly_client'
@@ -1,3 +1,3 @@
1
1
  module Assembly
2
- VERSION = "0.8.0"
2
+ VERSION = "0.9.0"
3
3
  end
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.8.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-02 00:00:00.000000000 Z
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