reality-belt 1.0.0 → 1.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/.gitattributes +5 -23
- data/.gitignore +5 -5
- data/.travis.yml +8 -0
- data/README.md +2 -0
- data/reality-belt.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a052566048ff85bdbfd69425da906af3b0622aa
|
|
4
|
+
data.tar.gz: 82d31bc866f4f64a4f40d6f68fd1abc162f088a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3b01717b159103ab976cd1b97757b8667593b7f7f8cb6f44328817b1246fe1299c0f337fdeb0bcbcea38bb8bca4281b295fe7f5faa75b6aa767ce531f4af4cf
|
|
7
|
+
data.tar.gz: b5fb81470c011561330c610868966302a0a22f0585f51f4812e0535e7fdd64de75da0144dfd10f583887f5cdc12aecb5d79b4ca75cdf95eb65b49cfd98d6118d
|
data/.gitattributes
CHANGED
|
@@ -1,30 +1,12 @@
|
|
|
1
1
|
* -text
|
|
2
|
-
*.
|
|
3
|
-
*.axl text -crlf -binary
|
|
4
|
-
*.c text -crlf -binary
|
|
5
|
-
*.css text -crlf -binary
|
|
6
|
-
*.html text -crlf -binary
|
|
7
|
-
*.java text -crlf -binary
|
|
8
|
-
*.js text -crlf -binary
|
|
9
|
-
*.json text -crlf -binary
|
|
10
|
-
*.jsp text -crlf -binary
|
|
11
|
-
*.properties text -crlf -binary
|
|
12
|
-
*.txt text -crlf -binary
|
|
13
|
-
*.xml text -crlf -binary
|
|
14
|
-
*.xsd text -crlf -binary
|
|
15
|
-
*.xsl text -crlf -binary
|
|
2
|
+
*.erb text -crlf -binary
|
|
16
3
|
*.rb text -crlf -binary
|
|
17
|
-
|
|
18
|
-
*.rake text -crlf -binary
|
|
19
|
-
*.sass text -crlf -binary
|
|
20
|
-
*.yml text -crlf -binary
|
|
21
|
-
*.yaml text -crlf -binary
|
|
22
|
-
*.rhtml text -crlf -binary
|
|
23
|
-
*.jar binary
|
|
4
|
+
CONTRIBUTING.md text -crlf -binary
|
|
24
5
|
LICENSE text -crlf -binary
|
|
25
6
|
CHANGELOG text -crlf -binary
|
|
26
7
|
Rakefile text -crlf -binary
|
|
27
8
|
rakefile text -crlf -binary
|
|
28
|
-
Buildfile text -crlf -binary
|
|
29
|
-
buildfile text -crlf -binary
|
|
30
9
|
*.gemspec text -crlf -binary
|
|
10
|
+
*.rdoc text -crlf -binary
|
|
11
|
+
*.textile text -crlf -binary
|
|
12
|
+
*.txt text -crlf -binary
|
data/.gitignore
CHANGED
data/.travis.yml
ADDED
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# reality-belt
|
|
2
2
|
|
|
3
|
+
[](http://travis-ci.org/realityforge/reality-belt)
|
|
4
|
+
|
|
3
5
|
A super simple domain model to represent projects. It is usually used to generically represent
|
|
4
6
|
projects. This metadata is transformed and passed to consumer tools such as [Zim](https://github.com/realityforge/zim)
|
|
5
7
|
and [Backpack](https://github.com/realityforge/backpack).
|
data/reality-belt.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: reality-belt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Donald
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-05
|
|
11
|
+
date: 2017-07-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: reality-core
|
|
@@ -47,6 +47,7 @@ files:
|
|
|
47
47
|
- ".gitattributes"
|
|
48
48
|
- ".gitignore"
|
|
49
49
|
- ".ruby-version"
|
|
50
|
+
- ".travis.yml"
|
|
50
51
|
- CONTRIBUTING.md
|
|
51
52
|
- Gemfile
|
|
52
53
|
- LICENSE
|