ellington 0.0.2 → 0.0.3
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 +2 -44
- data/lib/ellington/conductor.rb +16 -8
- data/lib/ellington/connection.rb +18 -3
- data/lib/ellington/errros.rb +6 -6
- data/lib/ellington/line.rb +19 -8
- data/lib/ellington/line_info.rb +2 -1
- data/lib/ellington/line_list.rb +6 -6
- data/lib/ellington/passenger.rb +6 -0
- data/lib/ellington/route.rb +28 -18
- data/lib/ellington/route_info.rb +1 -1
- data/lib/ellington/station.rb +6 -6
- data/lib/ellington/station_list.rb +4 -4
- data/lib/ellington/unique_type_array.rb +1 -4
- data/lib/ellington/version.rb +1 -1
- data/lib/ellington.rb +1 -1
- data/test/attendant_test.rb +5 -5
- data/test/conductor_test.rb +55 -26
- data/test/connection_test.rb +19 -0
- data/test/example.rb +51 -47
- data/test/line_info_test.rb +78 -0
- data/test/line_test.rb +60 -1
- data/test/logger_test.rb +20 -0
- data/test/passenger_test.rb +9 -0
- data/test/route_info_test.rb +63 -0
- data/test/route_test.rb +80 -0
- data/test/station_info_test.rb +31 -0
- data/test/station_test.rb +7 -7
- data/test/test_helper.rb +0 -1
- data/test/transition_info_test.rb +25 -0
- data/test/unique_type_array_test.rb +32 -0
- metadata +24 -14
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.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-02-
|
12
|
+
date: 2013-02-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: hero
|
@@ -43,14 +43,8 @@ dependencies:
|
|
43
43
|
- - ~>
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: 0.0.7
|
46
|
-
description: ! "\n
|
47
|
-
|
48
|
-
taken from New York's subway system.\n We've found that using cohesive physical
|
49
|
-
metaphors helps people reason more clearly about the complexities of software.\n
|
50
|
-
\ The subway analogy isn't perfect but gets pretty close.\n\n The Ellington
|
51
|
-
architecture should only be applied after a good understanding of the problem domain
|
52
|
-
has been established.\n We recommend spiking a solution to learn your project's
|
53
|
-
requirements and then coming back to Ellington.\n "
|
46
|
+
description: ! "\n A micro framework to ensure your projects are easy to manage,
|
47
|
+
develop, & maintain.\n "
|
54
48
|
email:
|
55
49
|
- natehop@gmail.com
|
56
50
|
executables: []
|
@@ -86,16 +80,24 @@ files:
|
|
86
80
|
- README.md
|
87
81
|
- test/attendant_test.rb
|
88
82
|
- test/conductor_test.rb
|
83
|
+
- test/connection_test.rb
|
89
84
|
- test/example.rb
|
85
|
+
- test/line_info_test.rb
|
90
86
|
- test/line_test.rb
|
87
|
+
- test/logger_test.rb
|
91
88
|
- test/passenger_test.rb
|
89
|
+
- test/route_info_test.rb
|
92
90
|
- test/route_test.rb
|
91
|
+
- test/station_info_test.rb
|
93
92
|
- test/station_test.rb
|
94
93
|
- test/target_test.rb
|
95
94
|
- test/test_helper.rb
|
96
95
|
- test/ticket_test.rb
|
96
|
+
- test/transition_info_test.rb
|
97
|
+
- test/unique_type_array_test.rb
|
97
98
|
homepage: https://github.com/hopsoft/ellington
|
98
|
-
licenses:
|
99
|
+
licenses:
|
100
|
+
- MIT
|
99
101
|
post_install_message:
|
100
102
|
rdoc_options: []
|
101
103
|
require_paths:
|
@@ -114,19 +116,27 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
116
|
version: '0'
|
115
117
|
requirements: []
|
116
118
|
rubyforge_project:
|
117
|
-
rubygems_version: 1.8.
|
119
|
+
rubygems_version: 1.8.23
|
118
120
|
signing_key:
|
119
121
|
specification_version: 3
|
120
|
-
summary: A framework
|
121
|
-
|
122
|
+
summary: A micro framework to ensure your projects are easy to manage, develop, &
|
123
|
+
maintain.
|
122
124
|
test_files:
|
123
125
|
- test/attendant_test.rb
|
124
126
|
- test/conductor_test.rb
|
127
|
+
- test/connection_test.rb
|
125
128
|
- test/example.rb
|
129
|
+
- test/line_info_test.rb
|
126
130
|
- test/line_test.rb
|
131
|
+
- test/logger_test.rb
|
127
132
|
- test/passenger_test.rb
|
133
|
+
- test/route_info_test.rb
|
128
134
|
- test/route_test.rb
|
135
|
+
- test/station_info_test.rb
|
129
136
|
- test/station_test.rb
|
130
137
|
- test/target_test.rb
|
131
138
|
- test/test_helper.rb
|
132
139
|
- test/ticket_test.rb
|
140
|
+
- test/transition_info_test.rb
|
141
|
+
- test/unique_type_array_test.rb
|
142
|
+
has_rdoc:
|