transilien_microservices 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: caede0548e4ec422c95b7aab1e44208b83c1777a
4
- data.tar.gz: b681dcd08d7a1a694e765ed32a820ed26dfa30b9
3
+ metadata.gz: 643ed9e6c49e2145ade2663ff50268a162fc4dd4
4
+ data.tar.gz: f87817a77538d6b7c399ece3bf7ce6771f8402e2
5
5
  SHA512:
6
- metadata.gz: ab94bdfb39014392cdc6162213c8aeb99d67abc51b4c07100c1b670f68bc1855f29b026b4910982ced27acb40d3d90242a33d01d4d392e644ec0f98fb462f649
7
- data.tar.gz: 0c85c1556d918a2d5ae60a40aa2dac9cd7a56db6579a4fd990402c027cc380fc79e67437cdacf8b2f2d030f07d386557f1b2a27796960e5e07acae4a79ad5fcc
6
+ metadata.gz: 4d1133c95095d19d16360628b8028334bee6a3efdaa5e0a2a38b84a057e972d4b06a2c249eabc500c6af4c47c8384f8a708498ab62df9c22c2443c835bcd618e
7
+ data.tar.gz: 5506eb6fceba6b9b39123acd3ccc5802f25e23a965a780db9430594d9d85ab98a98f0bc84eb623dd216018532fd07bfd2b51834944eb050e3a4ff4b42c80bf49
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ 0.0.6
2
+ * Change: It no longer reject any Line due to weird CodeLine. See EasyTransilien gem for fixes of SNCF shitty data
3
+
1
4
  0.0.5
2
5
  * New: plenty of logical links to transverse object instances (ie: Transilien::Line -> #stop_areas #stop_points #routes, etc.)
3
6
  * New: Transilien::RoutePoint that UFO between Route and StopArea and StopPoint...
data/Gemfile.lock CHANGED
@@ -10,22 +10,22 @@ GEM
10
10
  specs:
11
11
  celluloid (0.15.2)
12
12
  timers (~> 1.1.0)
13
- coderay (1.0.9)
14
- diff-lcs (1.1.3)
13
+ coderay (1.1.0)
14
+ diff-lcs (1.2.5)
15
15
  faraday (0.8.8)
16
16
  multipart-post (~> 1.2.0)
17
- ffi (1.9.0)
17
+ ffi (1.9.3)
18
18
  formatador (0.2.4)
19
- guard (2.1.1)
19
+ guard (2.2.5)
20
20
  formatador (>= 0.2.4)
21
21
  listen (~> 2.1)
22
22
  lumberjack (~> 1.0)
23
23
  pry (>= 0.9.12)
24
24
  thor (>= 0.18.1)
25
- guard-rspec (2.5.4)
26
- guard (>= 1.1)
27
- rspec (~> 2.11)
28
- listen (2.1.1)
25
+ guard-rspec (4.2.3)
26
+ guard (~> 2.1)
27
+ rspec (>= 2.14, < 4.0)
28
+ listen (2.4.0)
29
29
  celluloid (>= 0.15.2)
30
30
  rb-fsevent (>= 0.9.3)
31
31
  rb-inotify (>= 0.9)
@@ -33,30 +33,30 @@ GEM
33
33
  method_source (0.8.2)
34
34
  mini_portile (0.5.2)
35
35
  multipart-post (1.2.0)
36
- nokogiri (1.6.0)
36
+ nokogiri (1.6.1)
37
37
  mini_portile (~> 0.5.0)
38
- pry (0.9.12.2)
39
- coderay (~> 1.0.5)
38
+ pry (0.9.12.4)
39
+ coderay (~> 1.0)
40
40
  method_source (~> 0.8)
41
41
  slop (~> 3.4)
42
- pry-doc (0.4.6)
42
+ pry-doc (0.5.1)
43
43
  pry (>= 0.9)
44
44
  yard (>= 0.8)
45
- rb-fsevent (0.9.3)
46
- rb-inotify (0.9.2)
45
+ rb-fsevent (0.9.4)
46
+ rb-inotify (0.9.3)
47
47
  ffi (>= 0.5.0)
48
- rspec (2.12.0)
49
- rspec-core (~> 2.12.0)
50
- rspec-expectations (~> 2.12.0)
51
- rspec-mocks (~> 2.12.0)
52
- rspec-core (2.12.0)
53
- rspec-expectations (2.12.0)
54
- diff-lcs (~> 1.1.3)
55
- rspec-mocks (2.12.0)
56
- slop (3.4.6)
48
+ rspec (2.14.1)
49
+ rspec-core (~> 2.14.0)
50
+ rspec-expectations (~> 2.14.0)
51
+ rspec-mocks (~> 2.14.0)
52
+ rspec-core (2.14.7)
53
+ rspec-expectations (2.14.4)
54
+ diff-lcs (>= 1.1.3, < 2.0)
55
+ rspec-mocks (2.14.4)
56
+ slop (3.4.7)
57
57
  thor (0.18.1)
58
58
  timers (1.1.0)
59
- yard (0.8.7.2)
59
+ yard (0.8.7.3)
60
60
 
61
61
  PLATFORMS
62
62
  ruby
@@ -58,7 +58,7 @@ class Transilien::StopArea < Transilien::MicroService
58
58
  end
59
59
 
60
60
  def codes
61
- @codes ||= lines.map(&:code).reject {|c| c.length != 1}. uniq.sort
61
+ @codes ||= lines.map(&:code).uniq.sort
62
62
  end
63
63
 
64
64
  end
@@ -1,3 +1,3 @@
1
1
  module Transilien
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: transilien_microservices
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Lecavelier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-23 00:00:00.000000000 Z
11
+ date: 2014-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday