tilia-xml 1.2.0 → 1.2.0.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/CONTRIBUTING.md +4 -4
- data/lib/tilia/xml/element/xml_fragment.rb +2 -2
- data/lib/tilia/xml/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca4ea461bc07c46f7aa4d5b7841dc8623993104f
|
|
4
|
+
data.tar.gz: d6da6f89b94922851285be87cd666337bd59e52c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86545a5d181aa7074d4382c1f9da823ae4a0603e35d09c54dfacccdcb4f2280290d5b889b869648d827c863dff45175441ba56d9df38d447f5f0b27bf8d445ab
|
|
7
|
+
data.tar.gz: dc3426d96c5e9654cc5c2e430046cd13c53e249bbf78e4b3280a90a71b28be18fb01d44fd6639d619c7061ae7775ceade9912eb189a028490eba96a7ba02fce7
|
data/CONTRIBUTING.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# Contributing
|
|
2
2
|
|
|
3
3
|
This project adheres to the [Open Code of Conduct][code-of-conduct]. By participating, you are expected to honor this code.
|
|
4
|
-
[code-of-conduct]: http://todogroup.org/opencodeofconduct/#tilia-
|
|
4
|
+
[code-of-conduct]: http://todogroup.org/opencodeofconduct/#tilia-xml/tilia@jakobsack.de
|
|
5
5
|
|
|
6
|
-
This library is a port of [sabre/
|
|
6
|
+
This library is a port of [sabre/xml](http://github.com/fruux/sabre-xml). The ruby code should match the php code as good as possible. For more information refer to the [coding guidelines](https://tilia.github.io/coding_guidelines).
|
|
7
7
|
|
|
8
|
-
If you are having an issue [search the open issues](https://github.com/tilia/tilia-
|
|
8
|
+
If you are having an issue [search the open issues](https://github.com/tilia/tilia-xml/issues) or create an issue and we'll help point you in the right direction.
|
|
9
9
|
|
|
10
10
|
## Submitting a Pull Request
|
|
11
11
|
|
|
@@ -14,7 +14,7 @@ If you are having an issue [search the open issues](https://github.com/tilia/til
|
|
|
14
14
|
* Create a topic branch for your changes
|
|
15
15
|
* Ensure that you provide *documentation* and *test coverage* for your changes (patches won't be accepted without)
|
|
16
16
|
* Ensure that all tests pass (`bundle exec rake`)
|
|
17
|
-
* Create a [pull request](https://github.com/tilia/tilia-
|
|
17
|
+
* Create a [pull request](https://github.com/tilia/tilia-xml/pulls) on Github (these are also a great place to start a conversation around a patch as early as possible)
|
|
18
18
|
|
|
19
19
|
## Testing
|
|
20
20
|
|
|
@@ -18,7 +18,7 @@ module Tilia
|
|
|
18
18
|
|
|
19
19
|
protected
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
attr_writer :xml
|
|
22
22
|
|
|
23
23
|
public
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@ module Tilia
|
|
|
26
26
|
@xml = xml
|
|
27
27
|
end
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
attr_reader :xml
|
|
30
30
|
|
|
31
31
|
# The xml_serialize metod is called during xml writing.
|
|
32
32
|
#
|
data/lib/tilia/xml/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tilia-xml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.0
|
|
4
|
+
version: 1.2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jakob Sack
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-12-
|
|
11
|
+
date: 2015-12-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|