cxml-ruby 0.2.0 → 0.2.1
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 +4 -4
- data/.rubocop.yml +0 -9
- data/cxml-ruby.gemspec +1 -1
- data/lib/cxml/version.rb +1 -1
- data/lib/{cxml.rb → cxml-ruby.rb} +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 06f3a92004a0de57a2c595125aef836e25e4b59c52fc26b2ae349404b31dee88
|
|
4
|
+
data.tar.gz: 9ff26daee0357c90ed5ee4526a8acb5548a7079b75acb7f41127b7b2e232d889
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: acc6d892e319799d7b3c82d53e629d061022c5fe01eef31045221793319158bdbd30076849bbd8ea3afed63bf94c592f3df6e9f9cb20d2474a087a83a69d9a15
|
|
7
|
+
data.tar.gz: 924e231c90767fa651cd7c9e245ad7af0d8f9eff00425d38ad95515219e25268e361c630a41c76928ca38507d4c61347a3702bbb709473a8f16abb1f3201d5e9
|
data/.rubocop.yml
CHANGED
|
@@ -114,15 +114,6 @@ Lint/StructNewOverride:
|
|
|
114
114
|
# Enabled: false
|
|
115
115
|
|
|
116
116
|
# # Style preference
|
|
117
|
-
Style/MethodDefParentheses:
|
|
118
|
-
Enabled: true
|
|
119
|
-
Exclude:
|
|
120
|
-
- spec/**/*
|
|
121
|
-
Style/MethodCallWithArgsParentheses:
|
|
122
|
-
Enabled: true
|
|
123
|
-
Exclude:
|
|
124
|
-
- spec/**/*
|
|
125
|
-
|
|
126
117
|
# Style/WhileUntilModifier:
|
|
127
118
|
# Enabled: false
|
|
128
119
|
|
data/cxml-ruby.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.license = 'MIT'
|
|
9
9
|
s.summary = 'Parse/generate documents with the cXML protocol'
|
|
10
10
|
s.description = 'Ruby library to parse/generate documents with the cXML protocol'
|
|
11
|
-
s.homepage = 'https://github.com/officeluv/cxml'
|
|
11
|
+
s.homepage = 'https://github.com/officeluv/cxml-ruby'
|
|
12
12
|
s.authors = ['Josh Beckman', 'Eleni Chappen']
|
|
13
13
|
s.email = ['josh@officeluv.com', 'eleni@officeluv.com']
|
|
14
14
|
|
data/lib/cxml/version.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cxml-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Beckman
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-04-
|
|
12
|
+
date: 2020-04-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: pry
|
|
@@ -112,7 +112,7 @@ files:
|
|
|
112
112
|
- README.md
|
|
113
113
|
- Rakefile
|
|
114
114
|
- cxml-ruby.gemspec
|
|
115
|
-
- lib/cxml.rb
|
|
115
|
+
- lib/cxml-ruby.rb
|
|
116
116
|
- lib/cxml/accounting.rb
|
|
117
117
|
- lib/cxml/additional_cost.rb
|
|
118
118
|
- lib/cxml/additional_deduction.rb
|
|
@@ -252,7 +252,7 @@ files:
|
|
|
252
252
|
- spec/spec_helper.rb
|
|
253
253
|
- spec/status_spec.rb
|
|
254
254
|
- spec/support/helpers.rb
|
|
255
|
-
homepage: https://github.com/officeluv/cxml
|
|
255
|
+
homepage: https://github.com/officeluv/cxml-ruby
|
|
256
256
|
licenses:
|
|
257
257
|
- MIT
|
|
258
258
|
metadata: {}
|