wmls 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -4
  3. data/lib/wmls.rb +4 -0
  4. metadata +7 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 17b61e58f1cb6cd7348ca44488b3131ca2a09306
4
- data.tar.gz: caa970c7834d81229b205e41cc19b8d2b1fcb938
3
+ metadata.gz: 57c9ed31fec8e429b43fe0e1234159a42d546e83
4
+ data.tar.gz: cab99e605a6e360002012cf24cfd7ee354700f4d
5
5
  SHA512:
6
- metadata.gz: 551c7d5a9221db13bf1fda35f2ae2f7817221e869e3980efe2fa77870cc23d74c65510a7af6837cd66c32acbc275e227f3e2a0efa0382ae7181bdc9148a3bcb5
7
- data.tar.gz: 7c030bfc5c2ad6693bdc6bb9d32f917f98210499088a2a69a1b427228556816b8f550318b1cf354844dd358c48a963716772aa8e799c5e320e750004db1de89b
6
+ metadata.gz: 476f4c2b180095ce16bf169e327e0431d1fdec8cd6c44ddae79c8c9fbc44e300d4e29a7e0c1423cc39728e6bb887023570cbac100479bcb440bfe585618cfc6e
7
+ data.tar.gz: 0a785b7404263d55e21c3f52892be9faeb96c19e4dbec0bdd000cfd911599bda477b89c28f5194c1290bded671e0c186eee5d8189d36a203c39b04b836952793
data/README.md CHANGED
@@ -42,16 +42,16 @@ Inspect the templates you want to use to determine the variables you need to rep
42
42
  Pass substitution values for these values on the wmls command line, e.g:
43
43
 
44
44
  ```
45
- wmls -DuidWell=ABC -DuidWellbore=1234 ...
45
+ wmls -DuidWell=ABC -DuidWellbore=1234 -q...
46
46
  ```
47
47
 
48
48
  ##License
49
49
  Apache 2.0
50
50
 
51
51
  ##History
52
- 10 Mar 2011 -- initial commit.
53
- 16 Oct 2011 -- added -D option to wmls command line tool (0.1.7)
54
- 01 May 2012 -- added GetCap support (0.1.8)
52
+ 10 Mar 2011 -- initial commit.
53
+ 16 Oct 2011 -- added -D option to wmls command line tool (0.1.7)
54
+ 01 May 2012 -- added GetCap support (0.1.8)
55
55
  01 May 2012 -- added support for capabilitiesIn parameter to all calls (0.1.9)
56
56
  04 May 2012 -- added support for a headers parameter to all calls (0.1.11)
57
57
  07 May 2012 -- fix headers param to get_cap (default should be {}) (0.1.13)
@@ -60,4 +60,6 @@ Apache 2.0
60
60
  18 Jul 2015 -- replace REXML with nokogiri, and fix missing endDateTimeIndex (0.1.16) (thanks emre.demirors and alex.bednarczyk)
61
61
  21 Jul 2015 -- revert back to REXML. (nokogiri install too fragile) (0.1.18) (do not install this version)
62
62
  19 Apr 2016 -- revert back to 0.1.15 plus endDateTimeIndex fix (1.0.0)
63
+ 20 Apr 2016 -- enlarge REXML parameter to permit parsing up to 1GB responses (1.0.1)
63
64
 
65
+ [![Gem Version](https://badge.fury.io/rb/wmls.svg)](https://badge.fury.io/rb/wmls)
@@ -59,6 +59,10 @@ END
59
59
  </SOAP-ENV:Body>
60
60
  </SOAP-ENV:Envelope>
61
61
  END
62
+ # Permit parsing really large WITSML files (1GB)
63
+ REXML::Document::entity_expansion_text_limit=1024*1024*1024
64
+
65
+
62
66
  end
63
67
 
64
68
  # call WMLS_AddToStore with the given template
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wmls
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
  - Hugh Winkler
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-19 00:00:00.000000000 Z
11
+ date: 2016-04-20 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Wmls calls GetCap, GetFromStore, AddToStore, UpdateInStore, or DeleteFromStore
14
14
  on a WITSML server.
@@ -18,10 +18,10 @@ executables:
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
- - README.md
22
21
  - LICENSE
23
- - lib/wmls.rb
22
+ - README.md
24
23
  - bin/wmls
24
+ - lib/wmls.rb
25
25
  homepage: https://github.com/wellstorm/wmls/
26
26
  licenses:
27
27
  - Apache-2.0
@@ -32,17 +32,17 @@ require_paths:
32
32
  - lib
33
33
  required_ruby_version: !ruby/object:Gem::Requirement
34
34
  requirements:
35
- - - '>='
35
+ - - ">="
36
36
  - !ruby/object:Gem::Version
37
37
  version: '0'
38
38
  required_rubygems_version: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - '>='
40
+ - - ">="
41
41
  - !ruby/object:Gem::Version
42
42
  version: '0'
43
43
  requirements: []
44
44
  rubyforge_project:
45
- rubygems_version: 2.0.0
45
+ rubygems_version: 2.4.8
46
46
  signing_key:
47
47
  specification_version: 4
48
48
  summary: Calls GetCap, GetFromStore, AddToStore, UpdateInStore, or DeleteFromStore