neo-dci 0.4.1 → 0.5.0
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/.travis.yml +30 -3
- data/Gemfile +4 -0
- data/README.md +20 -7
- data/lib/neo/dci/context.rb +1 -1
- data/lib/neo/dci/version.rb +1 -1
- data/test/helper.rb +5 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6070ce31a847e81ba2169a13a0f59b004fba824a
|
|
4
|
+
data.tar.gz: 0309e34027e3389eabc494b0fa089fb38fe51fc9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8a78ae0c1d32b9386658cbb50833f706c17582c364f6e834b23016d8e1102f44dc51546b47b4b89c5e16a0843de4e49f9c42fc53b9912cd6549ed02aa2e97ba
|
|
7
|
+
data.tar.gz: 0781dd0b8108bb7495456753be7eaede738ea041d54f47b193b96ea3bfd3aee1212065d5ac8588c69f5851255f7cb30381dc3583cb9ad39702ac198b06894024
|
data/.travis.yml
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
language: ruby
|
|
2
|
+
sudo: false
|
|
3
|
+
cache: bundler
|
|
2
4
|
rvm:
|
|
3
|
-
-
|
|
4
|
-
-
|
|
5
|
-
-
|
|
5
|
+
- ruby-head
|
|
6
|
+
- 2.3.1
|
|
7
|
+
- 2.2
|
|
8
|
+
- 2.1
|
|
9
|
+
- jruby
|
|
10
|
+
- jruby-head
|
|
11
|
+
- rbx-2
|
|
12
|
+
matrix:
|
|
13
|
+
allow_failures:
|
|
14
|
+
- rvm: rbx-2
|
|
15
|
+
- rvm: jruby
|
|
16
|
+
- rvm: jruby-head
|
|
17
|
+
- rvm: ruby-head
|
|
18
|
+
env:
|
|
19
|
+
global:
|
|
20
|
+
- CODECLIMATE_REPO_TOKEN=70820b2c9137bc6411ae1a2e0c6861028c70ce373eec87ad46d9b7c14dce3401
|
|
21
|
+
- JRUBY_OPTS='--dev -J-Xmx1024M'
|
|
22
|
+
matrix:
|
|
23
|
+
allow_failures:
|
|
24
|
+
- rvm: ruby-head
|
|
25
|
+
- rvm: jruby-head
|
|
26
|
+
notifications:
|
|
27
|
+
webhooks:
|
|
28
|
+
urls:
|
|
29
|
+
- https://webhooks.gitter.im/e/556fa7e78f49c2f0016e
|
|
30
|
+
on_success: change # options: [always|never|change] default: always
|
|
31
|
+
on_failure: always # options: [always|never|change] default: always
|
|
32
|
+
on_start: false # default: false
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,11 +1,24 @@
|
|
|
1
|
-
|
|
1
|
+
[github]: https://github.com/neopoly/neo-dci
|
|
2
|
+
[doc]: http://rubydoc.info/github/neopoly/neo-dci/master/file/README.md
|
|
3
|
+
[gem]: https://rubygems.org/gems/neo-dci
|
|
4
|
+
[travis]: https://travis-ci.org/neopoly/neo-dci
|
|
5
|
+
[codeclimate]: https://codeclimate.com/github/neopoly/neo-dci
|
|
6
|
+
[inchpages]: https://inch-ci.org/github/neopoly/neo-dci
|
|
7
|
+
|
|
8
|
+
# Neo::DCI
|
|
2
9
|
|
|
3
10
|
Simple DCI (Data Context Interaction).
|
|
4
11
|
Includes Data, Roles and Context.
|
|
5
12
|
|
|
6
|
-
[
|
|
7
|
-
[
|
|
8
|
-
[
|
|
13
|
+
[][travis]
|
|
14
|
+
[][gem]
|
|
15
|
+
[][codeclimate]
|
|
16
|
+
[][codeclimate]
|
|
17
|
+
[][inchpages]
|
|
18
|
+
|
|
19
|
+
[Gem][gem] |
|
|
20
|
+
[Source][github] |
|
|
21
|
+
[Documentation][doc]
|
|
9
22
|
|
|
10
23
|
## Installation
|
|
11
24
|
|
|
@@ -95,8 +108,8 @@ end
|
|
|
95
108
|
|
|
96
109
|
## Contributing
|
|
97
110
|
|
|
98
|
-
1. Fork it
|
|
111
|
+
1. Fork it ( https://github.com/neopoly/neo-dci/fork )
|
|
99
112
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
100
|
-
3. Commit your changes (`git commit -am '
|
|
113
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
101
114
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
102
|
-
5. Create new Pull Request
|
|
115
|
+
5. Create a new Pull Request
|
data/lib/neo/dci/context.rb
CHANGED
data/lib/neo/dci/version.rb
CHANGED
data/test/helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: neo-dci
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Suschlik
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2016-07-26 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: 'on'
|
|
@@ -146,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
146
146
|
version: '0'
|
|
147
147
|
requirements: []
|
|
148
148
|
rubyforge_project:
|
|
149
|
-
rubygems_version: 2.
|
|
149
|
+
rubygems_version: 2.5.1
|
|
150
150
|
signing_key:
|
|
151
151
|
specification_version: 4
|
|
152
152
|
summary: Includes Data, Roles and Context.
|