openxml-docx 0.8.0.beta1 → 0.8.0

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
  SHA1:
3
- metadata.gz: c77fba73aae87283550220c6d7280217775712e1
4
- data.tar.gz: 208f20c30d545a257a58e6a2b4faec8a585bee92
3
+ metadata.gz: 9cc4cd3b3d4cbf278bef9e5e12ef57932b2a099c
4
+ data.tar.gz: 2abcccf45ba8f30f4db9c6a5807eef2e3dc226ae
5
5
  SHA512:
6
- metadata.gz: 300b5cb3789fa19a67b760dbdc654fe1fb3f9953913f25c2722966559e7c22fbeb0072b37057cb0251cf8fa014b3b27d5cf76e8d30c8e9778b83141cd4dcfaa5
7
- data.tar.gz: 9c9be7e6653c7fb60331a0e14be73e4d84c5fe191ac8a7db5475996c16b34132976598b38c7373d9230e94ac16f59ade2138a084d43eff3804100d14b82a9eca
6
+ metadata.gz: 50df25f5a8513f94f57503816ab68a699c07bff69741527dd7c8ae25137393803b17bfe11ac2c82eee93a6ff3903356ec1c867453468df5bff084ca86a271ec0
7
+ data.tar.gz: 354a007bebb94ed5e42fc6788f992b1b54131eeca1cfb64ac034a0b3cf15ed70f76a86c1fa4c42386116c35b217c785f0b76839130cd04235ee8545e5ab74e13
data/Gemfile.lock CHANGED
@@ -1,44 +1,53 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- openxml-docx (0.8.0.beta1)
4
+ openxml-docx (0.8.0)
5
5
  nokogiri
6
- open_xml_package (= 0.1.0.beta1)
6
+ openxml-package (>= 0.2.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- coderay (1.0.9)
11
+ coderay (1.1.0)
12
12
  diff-lcs (1.2.5)
13
- method_source (0.8.1)
14
- mini_portile (0.6.2)
15
- multi_json (1.7.2)
16
- nokogiri (1.6.6.4)
17
- mini_portile (~> 0.6.0)
18
- open_xml_package (0.1.0.beta1)
13
+ docile (1.1.5)
14
+ json (1.8.3)
15
+ method_source (0.8.2)
16
+ mini_portile2 (2.0.0)
17
+ nokogiri (1.6.7)
18
+ mini_portile2 (~> 2.0.0.rc2)
19
+ openxml-package (0.2.1)
19
20
  nokogiri
21
+ ox
20
22
  rubyzip (~> 1.1.0)
21
- pry (0.9.12)
22
- coderay (~> 1.0.5)
23
- method_source (~> 0.8)
23
+ ox (2.2.2)
24
+ pry (0.10.3)
25
+ coderay (~> 1.1.0)
26
+ method_source (~> 0.8.1)
24
27
  slop (~> 3.4)
25
- rake (10.0.4)
28
+ rake (10.4.2)
26
29
  rr (1.1.2)
27
- rspec (2.14.1)
28
- rspec-core (~> 2.14.0)
29
- rspec-expectations (~> 2.14.0)
30
- rspec-mocks (~> 2.14.0)
31
- rspec-core (2.14.7)
32
- rspec-expectations (2.14.4)
33
- diff-lcs (>= 1.1.3, < 2.0)
34
- rspec-mocks (2.14.4)
30
+ rspec (3.4.0)
31
+ rspec-core (~> 3.4.0)
32
+ rspec-expectations (~> 3.4.0)
33
+ rspec-mocks (~> 3.4.0)
34
+ rspec-core (3.4.1)
35
+ rspec-support (~> 3.4.0)
36
+ rspec-expectations (3.4.0)
37
+ diff-lcs (>= 1.2.0, < 2.0)
38
+ rspec-support (~> 3.4.0)
39
+ rspec-mocks (3.4.0)
40
+ diff-lcs (>= 1.2.0, < 2.0)
41
+ rspec-support (~> 3.4.0)
42
+ rspec-support (3.4.1)
35
43
  rubyzip (1.1.7)
36
- simplecov (0.7.1)
37
- multi_json (~> 1.0)
38
- simplecov-html (~> 0.7.1)
39
- simplecov-html (0.7.1)
40
- slop (3.4.4)
41
- timecop (0.6.3)
44
+ simplecov (0.11.0)
45
+ docile (~> 1.1.0)
46
+ json (~> 1.8)
47
+ simplecov-html (~> 0.10.0)
48
+ simplecov-html (0.10.0)
49
+ slop (3.6.0)
50
+ timecop (0.8.0)
42
51
 
43
52
  PLATFORMS
44
53
  ruby
@@ -1,4 +1,4 @@
1
- require "open_xml/package"
1
+ require "openxml/package"
2
2
 
3
3
  module OpenXml
4
4
  module Docx
@@ -1,5 +1,5 @@
1
1
  module OpenXml
2
2
  module Docx
3
- VERSION = "0.8.0.beta1"
3
+ VERSION = "0.8.0"
4
4
  end
5
5
  end
data/openxml-docx.gemspec CHANGED
@@ -21,7 +21,7 @@ Gem::Specification.new do |gem|
21
21
  gem.required_ruby_version = "~> 2.0"
22
22
 
23
23
  gem.add_dependency "nokogiri"
24
- gem.add_dependency "open_xml_package", "0.1.0.beta1"
24
+ gem.add_dependency "openxml-package", ">= 0.2.1"
25
25
 
26
26
  gem.add_development_dependency "pry"
27
27
  gem.add_development_dependency "rspec"
data/spec/spec_helper.rb CHANGED
@@ -1,4 +1,3 @@
1
- require "open_xml_package"
2
1
  require "rr"
3
2
  require "pry"
4
3
  require "timecop"
@@ -12,3 +11,4 @@ require "simplecov"
12
11
  SimpleCov.start
13
12
 
14
13
  require "openxml/docx"
14
+ require "nokogiri"
@@ -1 +1 @@
1
- <?xml version="1.0" encoding="utf-8"?><w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mo="http://schemas.microsoft.com/office/mac/office/2008/main" xmlns:mv="urn:schemas-microsoft-com:mac:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="w14 wp14"><w:body><w:p><w:r><w:t>This is just a test run.</w:t></w:r><w:r><w:t>But this isn't!</w:t></w:r></w:p></w:body></w:document>
1
+ <?xml version="1.0" encoding="utf-8"?><w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mo="http://schemas.microsoft.com/office/mac/office/2008/main" xmlns:mv="urn:schemas-microsoft-com:mac:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="w14 wp14"><w:body><w:p><w:r><w:t>This is just a test run.</w:t></w:r><w:r><w:t>But this isn&apos;t!</w:t></w:r></w:p></w:body></w:document>
@@ -9,7 +9,7 @@
9
9
  <w:t>This is just a test run.</w:t>
10
10
  </w:r>
11
11
  <w:r>
12
- <w:t>But this isn't!</w:t>
12
+ <w:t>But this isn&apos;t!</w:t>
13
13
  </w:r>
14
14
  </w:p>
15
15
  <w:p>
@@ -6,7 +6,7 @@
6
6
  <w:t>This is just a test run.</w:t>
7
7
  </w:r>
8
8
  <w:r>
9
- <w:t>But this isn't!</w:t>
9
+ <w:t>But this isn&apos;t!</w:t>
10
10
  </w:r>
11
11
  </w:p>
12
12
  <w:sectPr>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openxml-docx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0.beta1
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gene Doyel
@@ -25,19 +25,19 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
- name: open_xml_package
28
+ name: openxml-package
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 0.1.0.beta1
33
+ version: 0.2.1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 0.1.0.beta1
40
+ version: 0.2.1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: pry
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -473,9 +473,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
473
473
  version: '2.0'
474
474
  required_rubygems_version: !ruby/object:Gem::Requirement
475
475
  requirements:
476
- - - ">"
476
+ - - ">="
477
477
  - !ruby/object:Gem::Version
478
- version: 1.3.1
478
+ version: '0'
479
479
  requirements: []
480
480
  rubyforge_project:
481
481
  rubygems_version: 2.4.8