easy_manage_client 0.1.2 → 0.1.3

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: c92ca909f07c56b147d2344949cce1a2cabad368b0e5778222ffb2cc24d352d1
4
- data.tar.gz: 370056eb9e5d19193c5244d33fb534065d1d63a5062024da48b0aaa1b698c3dc
3
+ metadata.gz: 130eb023da4333a4518740e0459e12e1a4ff363335d618aa3c5276681bb7f594
4
+ data.tar.gz: df9beb2b82d7d5d10b7be8c6ce3bf7cc0fd3768fc77a1e0f04d4f1179ea7bc95
5
5
  SHA512:
6
- metadata.gz: 35a407a53e083ce7dd845c3f4d09cb4b5300d08e62a9ed20245d0316ffb4138a36f9d744e4bcd37d2ea98ed640cac8a126c2651514c3dbb93f8b37e697113892
7
- data.tar.gz: 958d2d55979fe2f135870a08fa51c8c793b1226214e4bf4dbfea9efb1105881da3b3345122b09597c8bcd04a07b0e460e299c355ca74a81433e820a849778139
6
+ metadata.gz: 1735399af8f63dcee6f0bd1d0024e4939910128ebcc1649f95448b4d6533074aef7a873fd08f36f0a2f1faf1df10c894868492c1750cae551e8e7eabb59fea22
7
+ data.tar.gz: 2c3108a515860f0a8218a1cbfe5f34ef279c526b65570b13d53e9500448db723a27e7324a6ddccdc00ae939b893495ed8c000e13bb88a72d3a5c71653a944a14
data/README.md CHANGED
@@ -34,6 +34,7 @@ Client must be configured before use. Configuration fields are as:
34
34
 
35
35
  ### Configuration on Rails Application:
36
36
  Create a file in the `config/initializers` directory and configure client in this file as below:
37
+
37
38
  `# config/initializers/easy_manage_client.rb`
38
39
  ```ruby
39
40
  EasyManageClient.configure do |config|
@@ -49,6 +50,7 @@ You can define multiple configurations separated by profile. To do this, you mus
49
50
  If the profile name is not pass in the configuration, it defaults to use `:default`.
50
51
  ##### Example:
51
52
  In this example, to download dynamicly application settings, profile name specified as `settings`.
53
+
52
54
  `# config/initializers/dynamic_settings.rb`
53
55
  ```ruby
54
56
  EasyManageClient.configure(:dynamic_settings) do |config|
@@ -33,5 +33,5 @@ Gem::Specification.new do |spec|
33
33
  spec.add_development_dependency('simplecov', '~> 0.17.1')
34
34
  spec.add_development_dependency('webmock', '~> 3.8')
35
35
 
36
- spec.add_dependency('faraday', '~> 0.11.0')
36
+ spec.add_dependency('faraday', '>= 0.7.4')
37
37
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EasyManageClient
4
- VERSION = '0.1.2'
4
+ VERSION = '0.1.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_manage_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sertan Gülveren
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-01-29 00:00:00.000000000 Z
12
+ date: 2020-02-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest
@@ -85,16 +85,16 @@ dependencies:
85
85
  name: faraday
86
86
  requirement: !ruby/object:Gem::Requirement
87
87
  requirements:
88
- - - "~>"
88
+ - - ">="
89
89
  - !ruby/object:Gem::Version
90
- version: 0.11.0
90
+ version: 0.7.4
91
91
  type: :runtime
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
- - - "~>"
95
+ - - ">="
96
96
  - !ruby/object:Gem::Version
97
- version: 0.11.0
97
+ version: 0.7.4
98
98
  description: It is a simple ruby client for EasyManage API.
99
99
  email:
100
100
  - sertangulveren@gmail.com