dynamicloud 1.0.2 → 1.0.3

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: 318fe1e2561223c784d9ea4d04ca0171e2e39faa
4
- data.tar.gz: 45a07038c7f20182e48589fe8d14c18a45e7529f
3
+ metadata.gz: fc7588163f0c0c46a3236474c9548f970580694a
4
+ data.tar.gz: b4c3084297f32fdea08292ed9080b008132d15b3
5
5
  SHA512:
6
- metadata.gz: 70b9f33d24b1462fcbe8a4db5cf83c2eeeac8435ea5ea258c39b304f2896d93564e64b7f6aa889acabf2fab413f2194c45fbc5528c21b65f9557c5a8ba411397
7
- data.tar.gz: 416cecdbeae4f8f98ba13b51b58e4d8363af84259b100a7544d5841dc698a2ce96fd6c8712d99e9a6a6ad7f2cf2361ccad17f95c233b835c348f7da29ed4d331
6
+ metadata.gz: 194b8a5d045fd4022da63e7fc31eebc9197d97627023fedf6b8aef793da8b9d90952c9e20a4c4585ac76fed2c3007d60b3bf53ff36f804bafb5a023b76db8fc9
7
+ data.tar.gz: d7d9585f79ceba7eff123bbd7c55fb52d2ad5b4bb6a2c0085bc333d725bc7c2c38d05f57ea2df4a793392eb12a9b13b376b1564b82170e2a2ef48437e1275dcd
data/lib/configuration.rb CHANGED
@@ -1,5 +1,3 @@
1
- require 'yaml'
2
-
3
1
  # This class maintains properties about api configuration.
4
2
  # @author Eleazar Gomez
5
3
  # @version 1.0.0
@@ -13,7 +11,7 @@ class Configuration
13
11
  # Load the current properties in config.yml.
14
12
  def initialize
15
13
  @config = {
16
- :url => 'http://localhost',
14
+ :url => 'http://api.dynamicloud.org',
17
15
  # this url must be executed using post method
18
16
  :url_get_records => '/api_models/{csk}/{aci}/get_records/{mid}/{count}/{offset}/',
19
17
  # this url must be executed using post method
@@ -42,7 +40,7 @@ class Configuration
42
40
  :url_update_selection => '/api_records/{csk}/{aci}/update_using_selection/{mid}',
43
41
  # this url must be executed using post method
44
42
  :url_delete_selection => '/api_records/{csk}/{aci}/delete_using_selection/{mid}',
45
- :version => '1.0.2'
43
+ :version => '1.0.3'
46
44
  }
47
45
  end
48
46
 
@@ -1,3 +1,3 @@
1
1
  module Dynamicloud
2
- VERSION = '1.0.2'
2
+ VERSION = '1.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dynamicloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - dynamicloud