manifestly-client 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9cd08e5fcf5d6cc1c5784fb8ccc8b9276d83fee49223236754a40834a312cddb
4
- data.tar.gz: 0cad3e6e1d87522fcc87ed716fae04b4f5f2c8f99ffce4f95713b0400584372b
3
+ metadata.gz: a4b6c5304b881f283583b67c959698beff5cbb608aca1511b3c309cd0472ac55
4
+ data.tar.gz: c9479920d279e8ec15af13b06ea4f1b13ab5c0d0aa7dc62411ff2ecd35e46925
5
5
  SHA512:
6
- metadata.gz: 21974177cd03dad15708b1dff4e6a6a3d5039866827d8061574ab621586e95300663428ccdfad012d83846e19564411eaaf62685013b83dc407885646092c605
7
- data.tar.gz: 2351717f5e532bc4ce0d504be33ad3e8273100b87ff45ae6a7ead9ee2e8462c4b5db09b5f56426703aaea938dbf9231b1e0a69d90da9578e472a33c67a1fd611
6
+ metadata.gz: 77d045c7aed9fd7512c9c9d962e75574a710bd20ff81f79c6a49fcba2704cb9daff5c746101a8a430e8fe0002b2f05ae8fe750bd9772e5f3b88c33bf17427f4b
7
+ data.tar.gz: b6f51d4b77643a308f6f81faff098a67d11950283871ecb788403fc52a33f64a500e40a83cbe0704232f096240de2e98a43292a38111dc86219470ab6a5aaf6f
data/README.md CHANGED
@@ -37,7 +37,7 @@ puts Manifestly::Entity::Workflow.list.inspect
37
37
  You may create a new workflow by passing a hash of data to the Workflow constructor and invoking the `create` method. Some internal fields (like `id`) will be injected back in to the object after it is created.
38
38
  ```ruby
39
39
  data = {title: 'Test Workflow', external_id: 'abc123'}
40
- workflow = Manifestly::Entity::Workflow.new(data).create
40
+ workflow = Manifestly::Entity::Workflow.new(data)
41
41
  workflow.create
42
42
  ```
43
43
 
@@ -2,7 +2,7 @@ require 'faraday'
2
2
 
3
3
  module Manifestly
4
4
  class Client
5
- DEFAULT_URL = 'https://manifest.ly/api'.freeze
5
+ DEFAULT_URL = 'https://api.manifest.ly/api'.freeze
6
6
  DEFAULT_API_VERSION = 'v1'.freeze
7
7
 
8
8
  attr_reader :url, :api_version, :api_key
@@ -1,3 +1,3 @@
1
1
  module Manifestly
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manifestly-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firespring
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-11-16 00:00:00.000000000 Z
11
+ date: 2019-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday