ellington 0.0.4 → 0.0.5
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.
- data/README.md +10 -8
- data/lib/ellington/version.rb +1 -1
- metadata +19 -2
data/README.md
CHANGED
|
@@ -7,21 +7,20 @@ The song was written about [New York City's A train](http://en.wikipedia.org/wik
|
|
|
7
7
|
#### Ellington is an architecture for modeling complex business processes.
|
|
8
8
|
|
|
9
9
|
Ellington is a collection of simple concepts designed to bring discipline, organization, and modularity to a project.
|
|
10
|
-
([View the slides from the intro talk.](https://speakerdeck.com/hopsoft/ellington-intro))
|
|
11
10
|
|
|
12
11
|
The nomenclature is taken from [New York's subway system](http://en.wikipedia.org/wiki/New_York_City_Subway).
|
|
13
|
-
We've found that using cohesive physical metaphors helps people reason more clearly about the complexities of software.
|
|
12
|
+
We've found that using consistent and cohesive physical metaphors helps people reason more clearly about the complexities of software.
|
|
14
13
|
*The subway analogy isn't perfect but gets pretty close.*
|
|
15
14
|
|
|
16
|
-
###
|
|
15
|
+
### Goals
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
- Provide a consistent nomenclature thats simple enough to be shared by engineering and the business team.
|
|
18
|
+
- Establish constraints which ensure complex projects are easy to manage, develop, and maintain.
|
|
20
19
|
|
|
21
|
-
##
|
|
20
|
+
## Start Here
|
|
22
21
|
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
* Skim the intro [slides on Speaker Deck](https://speakerdeck.com/hopsoft/ellington-intro).
|
|
23
|
+
* Review one of the [example apps](https://github.com/hopsoft/ellington/tree/master/examples/social_media).
|
|
25
24
|
|
|
26
25
|
## Lexicon
|
|
27
26
|
|
|
@@ -34,3 +33,6 @@ The Ellington architecture should only be applied **after** a good understanding
|
|
|
34
33
|
|
|
35
34
|

|
|
36
35
|
|
|
36
|
+
**Note:** *We recommend Ellington for projects where a good understanding of the problem domain has been established.
|
|
37
|
+
You might want to [spike a solution](http://en.wikipedia.org/wiki/Software_prototyping) to learn your project's requirements before using Ellington.*
|
|
38
|
+
|
data/lib/ellington/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ellington
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -43,6 +43,22 @@ dependencies:
|
|
|
43
43
|
- - ~>
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
45
|
version: 0.0.7
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: ruby-graphviz
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
none: false
|
|
50
|
+
requirements:
|
|
51
|
+
- - ~>
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: 1.0.8
|
|
54
|
+
type: :runtime
|
|
55
|
+
prerelease: false
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
none: false
|
|
58
|
+
requirements:
|
|
59
|
+
- - ~>
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 1.0.8
|
|
46
62
|
description: ! "\n A micro framework to ensure your projects are easy to manage,
|
|
47
63
|
develop, & maintain.\n "
|
|
48
64
|
email:
|
|
@@ -118,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
118
134
|
version: '0'
|
|
119
135
|
requirements: []
|
|
120
136
|
rubyforge_project:
|
|
121
|
-
rubygems_version: 1.8.
|
|
137
|
+
rubygems_version: 1.8.23
|
|
122
138
|
signing_key:
|
|
123
139
|
specification_version: 3
|
|
124
140
|
summary: A micro framework to ensure your projects are easy to manage, develop, &
|
|
@@ -141,3 +157,4 @@ test_files:
|
|
|
141
157
|
- test/ticket_test.rb
|
|
142
158
|
- test/transition_info_test.rb
|
|
143
159
|
- test/unique_type_array_test.rb
|
|
160
|
+
has_rdoc:
|