apis-is 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +25 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +5 -0
  5. data/Gemfile +14 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +63 -0
  8. data/Rakefile +9 -0
  9. data/apis-is.gemspec +25 -0
  10. data/examples/bus_example.rb +27 -0
  11. data/examples/car_example.rb +27 -0
  12. data/examples/cinema_example.rb +32 -0
  13. data/examples/company_example.rb +23 -0
  14. data/examples/currency_example.rb +25 -0
  15. data/examples/cyclecounter_example.rb +20 -0
  16. data/examples/earthquake_example.rb +23 -0
  17. data/examples/flights_example.rb +25 -0
  18. data/examples/lottery_example.rb +23 -0
  19. data/examples/particulates_example.rb +21 -0
  20. data/examples/tv_example.rb +37 -0
  21. data/examples/weather_example.rb +34 -0
  22. data/lib/apis.rb +109 -0
  23. data/lib/apis/client.rb +30 -0
  24. data/lib/apis/endpoints/bus.rb +15 -0
  25. data/lib/apis/endpoints/cars.rb +14 -0
  26. data/lib/apis/endpoints/cinema.rb +22 -0
  27. data/lib/apis/endpoints/companies.rb +38 -0
  28. data/lib/apis/endpoints/currency.rb +27 -0
  29. data/lib/apis/endpoints/cyclecounter.rb +14 -0
  30. data/lib/apis/endpoints/earthquake.rb +13 -0
  31. data/lib/apis/endpoints/flights.rb +24 -0
  32. data/lib/apis/endpoints/lottery.rb +27 -0
  33. data/lib/apis/endpoints/particulates.rb +13 -0
  34. data/lib/apis/endpoints/tv.rb +69 -0
  35. data/lib/apis/endpoints/weather.rb +37 -0
  36. data/lib/apis/response/feed_parser.rb +16 -0
  37. data/lib/apis/version.rb +6 -0
  38. data/spec/fixtures/bus_all.yml +216 -0
  39. data/spec/fixtures/bus_selective.yml +82 -0
  40. data/spec/fixtures/car.yml +53 -0
  41. data/spec/fixtures/cinema_showtimes.yml +319 -0
  42. data/spec/fixtures/cinema_theaters.yml +192 -0
  43. data/spec/fixtures/companies_by_address.yml +141 -0
  44. data/spec/fixtures/companies_by_name.yml +84 -0
  45. data/spec/fixtures/companies_by_socialnumber.yml +50 -0
  46. data/spec/fixtures/companies_by_vsknr.yml +50 -0
  47. data/spec/fixtures/currency_arion.yml +83 -0
  48. data/spec/fixtures/currency_lb.yml +104 -0
  49. data/spec/fixtures/currency_m5.yml +77 -0
  50. data/spec/fixtures/cyclecounter.yml +50 -0
  51. data/spec/fixtures/earthquake.yml +1311 -0
  52. data/spec/fixtures/flights_arrivals.yml +269 -0
  53. data/spec/fixtures/flights_departure.yml +247 -0
  54. data/spec/fixtures/lottery_eurojackpot.yml +57 -0
  55. data/spec/fixtures/lottery_lotto.yml +57 -0
  56. data/spec/fixtures/lottery_vikingalotto.yml +57 -0
  57. data/spec/fixtures/particulates.yml +49 -0
  58. data/spec/fixtures/tv_ruv.yml +380 -0
  59. data/spec/fixtures/tv_ruvithrottir.yml +47 -0
  60. data/spec/fixtures/tv_skjar1.yml +317 -0
  61. data/spec/fixtures/tv_stod2.yml +491 -0
  62. data/spec/fixtures/tv_stod2bio.yml +217 -0
  63. data/spec/fixtures/tv_stod2gull.yml +284 -0
  64. data/spec/fixtures/tv_stod2sport.yml +105 -0
  65. data/spec/fixtures/tv_stod2sport2.yml +118 -0
  66. data/spec/fixtures/tv_stod3.yml +301 -0
  67. data/spec/fixtures/weather_forecast.yml +215 -0
  68. data/spec/fixtures/weather_observations.yml +215 -0
  69. data/spec/fixtures/weather_texts.yml +79 -0
  70. data/spec/helper.rb +18 -0
  71. data/spec/specs/bus_spec.rb +17 -0
  72. data/spec/specs/car_spec.rb +10 -0
  73. data/spec/specs/cinema_spec.rb +19 -0
  74. data/spec/specs/company_spec.rb +40 -0
  75. data/spec/specs/currency_spec.rb +30 -0
  76. data/spec/specs/cyclecounter_spec.rb +10 -0
  77. data/spec/specs/earthquake_spec.rb +10 -0
  78. data/spec/specs/flights_spec.rb +22 -0
  79. data/spec/specs/lottery_spec.rb +30 -0
  80. data/spec/specs/particulates_spec.rb +10 -0
  81. data/spec/specs/tv_spec.rb +84 -0
  82. data/spec/specs/weather_spec.rb +31 -0
  83. metadata +205 -0
@@ -0,0 +1,18 @@
1
+ if RUBY_ENGINE == 'ruby'
2
+ require 'simplecov'
3
+
4
+ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
5
+ SimpleCov::Formatter::HTMLFormatter
6
+ ]
7
+ SimpleCov.start
8
+ end
9
+
10
+ require 'apis'
11
+ require 'rspec'
12
+ require 'webmock/rspec'
13
+ require 'vcr'
14
+
15
+ VCR.configure do |c|
16
+ c.cassette_library_dir = 'spec/fixtures'
17
+ c.hook_into :webmock
18
+ end
@@ -0,0 +1,17 @@
1
+ require 'helper'
2
+
3
+ describe 'busses' do
4
+ it 'should return res status 200' do
5
+ VCR.use_cassette('bus_all') do
6
+ res = Apis.busses
7
+ expect(res).to be_a_kind_of(Hash)
8
+ end
9
+ end
10
+
11
+ it 'should return res status 200' do
12
+ VCR.use_cassette('bus_selective') do
13
+ res = Apis.busses([1, 2, 3, 4])
14
+ expect(res).to be_a_kind_of(Hash)
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,10 @@
1
+ require 'helper'
2
+
3
+ describe 'cars' do
4
+ it 'should return res status 200' do
5
+ VCR.use_cassette('car') do
6
+ res = Apis.car('aa031')
7
+ expect(res).to be_a_kind_of(Hash)
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,19 @@
1
+ require 'helper'
2
+
3
+ describe 'cinema' do
4
+ it 'should return res status 200' do
5
+ VCR.use_cassette('cinema_showtimes') do
6
+ res = Apis.cinema.showtimes
7
+ expect(res).to be_a_kind_of(Hash)
8
+ end
9
+ end
10
+
11
+ describe 'cinema/theaters' do
12
+ it 'should return res status 200' do
13
+ VCR.use_cassette('cinema_theaters') do
14
+ res = Apis.cinema.theaters
15
+ expect(res).to be_a_kind_of(Hash)
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,40 @@
1
+ require 'helper'
2
+
3
+ describe 'companies' do
4
+
5
+ describe 'by name' do
6
+ it 'should return res status 200' do
7
+ VCR.use_cassette('companies_by_name') do
8
+ res = Apis.companies.by_name('hagur')
9
+ expect(res).to be_a_kind_of(Hash)
10
+ end
11
+ end
12
+ end
13
+
14
+ describe 'by address' do
15
+ it 'should return res status 200' do
16
+ VCR.use_cassette('companies_by_address') do
17
+ res = Apis.companies.by_address('Aðallandi')
18
+ expect(res).to be_a_kind_of(Hash)
19
+ end
20
+ end
21
+ end
22
+
23
+ describe 'by socialnumber' do
24
+ it 'should return res status 200' do
25
+ VCR.use_cassette('companies_by_socialnumber') do
26
+ res = Apis.companies.by_sn('5210992759')
27
+ expect(res).to be_a_kind_of(Hash)
28
+ end
29
+ end
30
+ end
31
+
32
+ describe 'by vsknr' do
33
+ it 'should return res status 200' do
34
+ VCR.use_cassette('companies_by_vsknr') do
35
+ res = Apis.companies.by_vsknr('95710')
36
+ expect(res).to be_a_kind_of(Hash)
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,30 @@
1
+ require 'helper'
2
+
3
+ describe 'currency' do
4
+ describe 'currency/m5' do
5
+ it 'should return res status 200' do
6
+ VCR.use_cassette('currency_m5') do
7
+ res = Apis.currency.m5
8
+ expect(res).to be_a_kind_of(Hash)
9
+ end
10
+ end
11
+ end
12
+
13
+ describe 'currency/arion' do
14
+ it 'should return res status 200' do
15
+ VCR.use_cassette('currency_arion') do
16
+ res = Apis.currency.arion
17
+ expect(res).to be_a_kind_of(Hash)
18
+ end
19
+ end
20
+ end
21
+
22
+ describe 'currency/lb' do
23
+ it 'should return res status 200' do
24
+ VCR.use_cassette('currency_lb') do
25
+ res = Apis.currency.lb
26
+ expect(res).to be_a_kind_of(Hash)
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,10 @@
1
+ require 'helper'
2
+
3
+ describe 'cyclecounter' do
4
+ it 'should be of type hash' do
5
+ VCR.use_cassette('cyclecounter') do
6
+ res = Apis.cyclecounter
7
+ expect(res).to be_a_kind_of(Hash)
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'helper'
2
+
3
+ describe 'earthquake' do
4
+ it 'should return res code 200' do
5
+ VCR.use_cassette('earthquake') do
6
+ res = Apis.earthquake
7
+ expect(res).to be_a_kind_of(Hash)
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,22 @@
1
+ require 'helper'
2
+
3
+ describe 'flights' do
4
+
5
+ describe 'departure' do
6
+ it 'should return res status 200' do
7
+ VCR.use_cassette('flights_departure') do
8
+ res = Apis.flights.departure
9
+ expect(res).to be_a_kind_of(Hash)
10
+ end
11
+ end
12
+ end
13
+
14
+ describe 'arrivals' do
15
+ it 'should return res status 200' do
16
+ VCR.use_cassette('flights_arrivals') do
17
+ res = Apis.flights.arrivals
18
+ expect(res).to be_a_kind_of(Hash)
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,30 @@
1
+ require 'helper'
2
+
3
+ describe 'lottery' do
4
+ describe 'lotto' do
5
+ it 'should return res status 200' do
6
+ VCR.use_cassette('lottery_lotto') do
7
+ res = Apis.lottery.lotto
8
+ expect(res).to be_a_kind_of(Hash)
9
+ end
10
+ end
11
+ end
12
+
13
+ describe 'lottery/vikingalotto' do
14
+ it 'should return res status 200' do
15
+ VCR.use_cassette('lottery_vikingalotto') do
16
+ res = Apis.lottery.vikingalotto
17
+ expect(res).to be_a_kind_of(Hash)
18
+ end
19
+ end
20
+ end
21
+
22
+ describe 'lottery/eurojackpot' do
23
+ it 'should return res status 200' do
24
+ VCR.use_cassette('lottery_eurojackpot') do
25
+ res = Apis.lottery.eurojackpot
26
+ expect(res).to be_a_kind_of(Hash)
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,10 @@
1
+ require 'helper'
2
+
3
+ describe 'particulates' do
4
+ it 'should return res code 200' do
5
+ VCR.use_cassette('particulates') do
6
+ res = Apis.particulates
7
+ expect(res).to be_a_kind_of(Hash)
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,84 @@
1
+ require 'helper'
2
+
3
+ describe 'tv' do
4
+ describe 'tv/ruv' do
5
+ it 'should return res status 200' do
6
+ VCR.use_cassette('tv_ruv') do
7
+ res = Apis.tv.ruv
8
+ expect(res).to be_a_kind_of(Hash)
9
+ end
10
+ end
11
+ end
12
+
13
+ describe 'tv/ruvithrottir' do
14
+ it 'should return res status 200' do
15
+ VCR.use_cassette('tv_ruvithrottir') do
16
+ res = Apis.tv.ruvithrottir
17
+ expect(res).to be_a_kind_of(Hash)
18
+ end
19
+ end
20
+ end
21
+
22
+ describe 'tv/stod2' do
23
+ it 'should return res status 200' do
24
+ VCR.use_cassette('tv_stod2') do
25
+ res = Apis.tv.stod2
26
+ expect(res).to be_a_kind_of(Hash)
27
+ end
28
+ end
29
+ end
30
+
31
+ describe 'tv/stod2sport' do
32
+ it 'should return res status 200' do
33
+ VCR.use_cassette('tv_stod2sport') do
34
+ res = Apis.tv.stod2sport
35
+ expect(res).to be_a_kind_of(Hash)
36
+ end
37
+ end
38
+ end
39
+
40
+ describe 'tv/stod2sport2' do
41
+ it 'should return res status 200' do
42
+ VCR.use_cassette('tv_stod2sport2') do
43
+ res = Apis.tv.stod2sport2
44
+ expect(res).to be_a_kind_of(Hash)
45
+ end
46
+ end
47
+ end
48
+
49
+ describe 'tv/stod2gull' do
50
+ it 'should return res status 200' do
51
+ VCR.use_cassette('tv_stod2gull') do
52
+ res = Apis.tv.stod2gull
53
+ expect(res).to be_a_kind_of(Hash)
54
+ end
55
+ end
56
+ end
57
+
58
+ describe 'tv/stod2bio' do
59
+ it 'should return res status 200' do
60
+ VCR.use_cassette('tv_stod2bio') do
61
+ res = Apis.tv.stod2bio
62
+ expect(res).to be_a_kind_of(Hash)
63
+ end
64
+ end
65
+ end
66
+
67
+ describe 'tv/stod3' do
68
+ it 'should return res status 200' do
69
+ VCR.use_cassette('tv_stod3') do
70
+ res = Apis.tv.stod3
71
+ expect(res).to be_a_kind_of(Hash)
72
+ end
73
+ end
74
+ end
75
+
76
+ describe 'tv/skjar1' do
77
+ it 'should return res status 200' do
78
+ VCR.use_cassette('tv_skjar1') do
79
+ res = Apis.tv.skjar1
80
+ expect(res).to be_a_kind_of(Hash)
81
+ end
82
+ end
83
+ end
84
+ end
@@ -0,0 +1,31 @@
1
+ require 'helper'
2
+
3
+ describe 'weather' do
4
+
5
+ describe 'text' do
6
+ it 'should return res status 200' do
7
+ VCR.use_cassette('weather_texts') do
8
+ res = Apis.weather.texts([2, 3, 5])
9
+ expect(res).to be_a_kind_of(Hash)
10
+ end
11
+ end
12
+ end
13
+
14
+ describe 'observations' do
15
+ it 'should return res status 200' do
16
+ VCR.use_cassette('weather_observations') do
17
+ res = Apis.weather.observations([361, 2428])
18
+ expect(res).to be_a_kind_of(Hash)
19
+ end
20
+ end
21
+ end
22
+
23
+ describe 'forecasts' do
24
+ it 'should return res status 200' do
25
+ VCR.use_cassette('weather_forecast') do
26
+ res = Apis.weather.forecasts([361, 2428])
27
+ expect(res).to be_a_kind_of(Hash)
28
+ end
29
+ end
30
+ end
31
+ end
metadata ADDED
@@ -0,0 +1,205 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: apis-is
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Skuli Oskarsson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: faraday
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.9'
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 0.9.0
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - "~>"
42
+ - !ruby/object:Gem::Version
43
+ version: '0.9'
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 0.9.0
47
+ description: A simple API wrapper for the apis.is API
48
+ email:
49
+ - skuli@codeiak.io
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - ".gitignore"
55
+ - ".rspec"
56
+ - ".travis.yml"
57
+ - Gemfile
58
+ - LICENSE.txt
59
+ - README.md
60
+ - Rakefile
61
+ - apis-is.gemspec
62
+ - examples/bus_example.rb
63
+ - examples/car_example.rb
64
+ - examples/cinema_example.rb
65
+ - examples/company_example.rb
66
+ - examples/currency_example.rb
67
+ - examples/cyclecounter_example.rb
68
+ - examples/earthquake_example.rb
69
+ - examples/flights_example.rb
70
+ - examples/lottery_example.rb
71
+ - examples/particulates_example.rb
72
+ - examples/tv_example.rb
73
+ - examples/weather_example.rb
74
+ - lib/apis.rb
75
+ - lib/apis/client.rb
76
+ - lib/apis/endpoints/bus.rb
77
+ - lib/apis/endpoints/cars.rb
78
+ - lib/apis/endpoints/cinema.rb
79
+ - lib/apis/endpoints/companies.rb
80
+ - lib/apis/endpoints/currency.rb
81
+ - lib/apis/endpoints/cyclecounter.rb
82
+ - lib/apis/endpoints/earthquake.rb
83
+ - lib/apis/endpoints/flights.rb
84
+ - lib/apis/endpoints/lottery.rb
85
+ - lib/apis/endpoints/particulates.rb
86
+ - lib/apis/endpoints/tv.rb
87
+ - lib/apis/endpoints/weather.rb
88
+ - lib/apis/response/feed_parser.rb
89
+ - lib/apis/version.rb
90
+ - spec/fixtures/bus_all.yml
91
+ - spec/fixtures/bus_selective.yml
92
+ - spec/fixtures/car.yml
93
+ - spec/fixtures/cinema_showtimes.yml
94
+ - spec/fixtures/cinema_theaters.yml
95
+ - spec/fixtures/companies_by_address.yml
96
+ - spec/fixtures/companies_by_name.yml
97
+ - spec/fixtures/companies_by_socialnumber.yml
98
+ - spec/fixtures/companies_by_vsknr.yml
99
+ - spec/fixtures/currency_arion.yml
100
+ - spec/fixtures/currency_lb.yml
101
+ - spec/fixtures/currency_m5.yml
102
+ - spec/fixtures/cyclecounter.yml
103
+ - spec/fixtures/earthquake.yml
104
+ - spec/fixtures/flights_arrivals.yml
105
+ - spec/fixtures/flights_departure.yml
106
+ - spec/fixtures/lottery_eurojackpot.yml
107
+ - spec/fixtures/lottery_lotto.yml
108
+ - spec/fixtures/lottery_vikingalotto.yml
109
+ - spec/fixtures/particulates.yml
110
+ - spec/fixtures/tv_ruv.yml
111
+ - spec/fixtures/tv_ruvithrottir.yml
112
+ - spec/fixtures/tv_skjar1.yml
113
+ - spec/fixtures/tv_stod2.yml
114
+ - spec/fixtures/tv_stod2bio.yml
115
+ - spec/fixtures/tv_stod2gull.yml
116
+ - spec/fixtures/tv_stod2sport.yml
117
+ - spec/fixtures/tv_stod2sport2.yml
118
+ - spec/fixtures/tv_stod3.yml
119
+ - spec/fixtures/weather_forecast.yml
120
+ - spec/fixtures/weather_observations.yml
121
+ - spec/fixtures/weather_texts.yml
122
+ - spec/helper.rb
123
+ - spec/specs/bus_spec.rb
124
+ - spec/specs/car_spec.rb
125
+ - spec/specs/cinema_spec.rb
126
+ - spec/specs/company_spec.rb
127
+ - spec/specs/currency_spec.rb
128
+ - spec/specs/cyclecounter_spec.rb
129
+ - spec/specs/earthquake_spec.rb
130
+ - spec/specs/flights_spec.rb
131
+ - spec/specs/lottery_spec.rb
132
+ - spec/specs/particulates_spec.rb
133
+ - spec/specs/tv_spec.rb
134
+ - spec/specs/weather_spec.rb
135
+ homepage: https://github.com/SkuliOskarsson/apis-is-gem
136
+ licenses:
137
+ - MIT
138
+ metadata: {}
139
+ post_install_message:
140
+ rdoc_options: []
141
+ require_paths:
142
+ - lib
143
+ required_ruby_version: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - ">="
146
+ - !ruby/object:Gem::Version
147
+ version: '0'
148
+ required_rubygems_version: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ requirements: []
154
+ rubyforge_project:
155
+ rubygems_version: 2.2.2
156
+ signing_key:
157
+ specification_version: 4
158
+ summary: Ruby toolkit for the apis.is API
159
+ test_files:
160
+ - spec/fixtures/bus_all.yml
161
+ - spec/fixtures/bus_selective.yml
162
+ - spec/fixtures/car.yml
163
+ - spec/fixtures/cinema_showtimes.yml
164
+ - spec/fixtures/cinema_theaters.yml
165
+ - spec/fixtures/companies_by_address.yml
166
+ - spec/fixtures/companies_by_name.yml
167
+ - spec/fixtures/companies_by_socialnumber.yml
168
+ - spec/fixtures/companies_by_vsknr.yml
169
+ - spec/fixtures/currency_arion.yml
170
+ - spec/fixtures/currency_lb.yml
171
+ - spec/fixtures/currency_m5.yml
172
+ - spec/fixtures/cyclecounter.yml
173
+ - spec/fixtures/earthquake.yml
174
+ - spec/fixtures/flights_arrivals.yml
175
+ - spec/fixtures/flights_departure.yml
176
+ - spec/fixtures/lottery_eurojackpot.yml
177
+ - spec/fixtures/lottery_lotto.yml
178
+ - spec/fixtures/lottery_vikingalotto.yml
179
+ - spec/fixtures/particulates.yml
180
+ - spec/fixtures/tv_ruv.yml
181
+ - spec/fixtures/tv_ruvithrottir.yml
182
+ - spec/fixtures/tv_skjar1.yml
183
+ - spec/fixtures/tv_stod2.yml
184
+ - spec/fixtures/tv_stod2bio.yml
185
+ - spec/fixtures/tv_stod2gull.yml
186
+ - spec/fixtures/tv_stod2sport.yml
187
+ - spec/fixtures/tv_stod2sport2.yml
188
+ - spec/fixtures/tv_stod3.yml
189
+ - spec/fixtures/weather_forecast.yml
190
+ - spec/fixtures/weather_observations.yml
191
+ - spec/fixtures/weather_texts.yml
192
+ - spec/helper.rb
193
+ - spec/specs/bus_spec.rb
194
+ - spec/specs/car_spec.rb
195
+ - spec/specs/cinema_spec.rb
196
+ - spec/specs/company_spec.rb
197
+ - spec/specs/currency_spec.rb
198
+ - spec/specs/cyclecounter_spec.rb
199
+ - spec/specs/earthquake_spec.rb
200
+ - spec/specs/flights_spec.rb
201
+ - spec/specs/lottery_spec.rb
202
+ - spec/specs/particulates_spec.rb
203
+ - spec/specs/tv_spec.rb
204
+ - spec/specs/weather_spec.rb
205
+ has_rdoc: