deutschebahn 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a879928d11779ac5ed32269151725179ae283ebe
4
+ data.tar.gz: af3a8147c00f2ad279b8db40012e7a0d10a5ab12
5
+ SHA512:
6
+ metadata.gz: 1952ed2f02757846f091cb57b08f2836c83b637ceda89734ffb2bd3085dfa77fc57047e00fa9d28a7daf34bf7a184fe12ded7b50b1843fb53288f5f3b03b004d
7
+ data.tar.gz: dfc82e030c230a4e86fa3836526a8d0c468e557d836e972301bf761b7d000a98cefa12f4930d46eee9e5ebffb4d0ca3402e2270bcceb4b18fe377e2fa9851bb6
data/.gitignore ADDED
@@ -0,0 +1,35 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Specific to RubyMotion:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+
17
+ ## Documentation cache and generated files:
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+
23
+ ## Environment normalisation:
24
+ /.bundle/
25
+ /vendor/bundle
26
+ /lib/bundler/man/
27
+
28
+ # for a library or gem, you might want to ignore these files since the code is
29
+ # intended to run in multiple environments; otherwise, check them in:
30
+ # Gemfile.lock
31
+ # .ruby-version
32
+ # .ruby-gemset
33
+
34
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
35
+ .rvmrc
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format documentation
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+ ruby '2.2.2'
3
+
4
+ gemspec
5
+
6
+ gem 'pry'
7
+ gem 'httparty'
data/Gemfile.lock ADDED
@@ -0,0 +1,49 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ deutschebahn (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ coderay (1.1.0)
10
+ diff-lcs (1.2.5)
11
+ httparty (0.13.7)
12
+ json (~> 1.8)
13
+ multi_xml (>= 0.5.2)
14
+ json (1.8.3)
15
+ method_source (0.8.2)
16
+ multi_xml (0.5.5)
17
+ pry (0.10.3)
18
+ coderay (~> 1.1.0)
19
+ method_source (~> 0.8.1)
20
+ slop (~> 3.4)
21
+ rake (10.4.2)
22
+ rspec (3.4.0)
23
+ rspec-core (~> 3.4.0)
24
+ rspec-expectations (~> 3.4.0)
25
+ rspec-mocks (~> 3.4.0)
26
+ rspec-core (3.4.1)
27
+ rspec-support (~> 3.4.0)
28
+ rspec-expectations (3.4.0)
29
+ diff-lcs (>= 1.2.0, < 2.0)
30
+ rspec-support (~> 3.4.0)
31
+ rspec-mocks (3.4.0)
32
+ diff-lcs (>= 1.2.0, < 2.0)
33
+ rspec-support (~> 3.4.0)
34
+ rspec-support (3.4.1)
35
+ slop (3.6.0)
36
+
37
+ PLATFORMS
38
+ ruby
39
+
40
+ DEPENDENCIES
41
+ bundler (~> 1.10)
42
+ deutschebahn!
43
+ httparty
44
+ pry
45
+ rake (~> 10.0)
46
+ rspec
47
+
48
+ BUNDLED WITH
49
+ 1.10.6
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Dennis Hägler
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
data/README.md ADDED
@@ -0,0 +1,81 @@
1
+ # Deutschebahn
2
+
3
+ This is a simple gem to fetch station data of the Deutsche Bahn. The gem
4
+ uses the json api from [http://54.93.120.139/api/station/](http://54.93.120.139/api/station/)
5
+
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'deutschebahn'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install deutschebahn
22
+
23
+ ## Usage
24
+
25
+ ```ruby
26
+ require 'deutschebahn'
27
+
28
+ stations = Deutschebahn.stations
29
+ stations.first.name
30
+ ```
31
+ The `Deutschebahn.stations` creates an array of `Deutschebahn::Station`
32
+
33
+ ###Method calls
34
+ The `Deutschebahn::Station` provides basic method calls.
35
+ * `local_distance_traffic?`
36
+ * `long_distance_traffic?`
37
+ * `name`
38
+ * `state`
39
+ * `management`
40
+ * `place`
41
+ * `street`
42
+ * `transport_association`
43
+ * `stops`
44
+ * `supporter`
45
+ * `zipcode`
46
+ * `number`
47
+ * `category`
48
+
49
+ ## Development
50
+
51
+ The gem is developed for the [3rd hackerthon](https://www.mindboxberlin.com/index.php/3rdhackathon.html)
52
+ from the Deutsch Bahn.
53
+
54
+ ###Data Fetching
55
+ The Data from the json looks like this.
56
+ ```json
57
+ {
58
+ "_id": "566af53f271da51420e9c385",
59
+ "bfNr": 119,
60
+ "bundesland": "Hessen",
61
+ "bm": "Darmstadt",
62
+ "station": "Altheim (Hess)",
63
+ "bfDsAbk": "FAT",
64
+ "katVst": 6,
65
+ "strasse": "Münstererstr. 19",
66
+ "plz": 64839,
67
+ "ort": "Münster",
68
+ "aufgabentraeger": "Rhein-Main-Verkehrsverbund GmbH",
69
+ "verkehrsVerb": "RMV",
70
+ "fernverkehr": true,
71
+ "nahverkehr": true,
72
+ "__v": 0
73
+ }
74
+ ```
75
+
76
+
77
+ ## Contributing
78
+
79
+ Bug reports and pull requests are welcome on GitHub at
80
+ https://github.com/DenniJensen/deutschebahn.
81
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "deutschebahn"
5
+
6
+ require "irb"
7
+ IRB.start
data/bin/deutschebahn ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'pry'
4
+ require 'deutschebahn'
5
+
6
+ puts 'Hello world'
7
+ stations = Deutschebahn.stations
8
+
data/bin/setup ADDED
@@ -0,0 +1,5 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'deutschebahn/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "deutschebahn"
8
+ spec.version = Deutschebahn::VERSION
9
+ spec.authors = ["Dennis Haegler"]
10
+ spec.email = ["dennis.haegler@gmail.com"]
11
+
12
+ spec.summary = %q{A simple api caller for deutsche bahn api.}
13
+ spec.description = %q{A simple api caller for deutsche bahn api.}
14
+ spec.homepage = "https://github.com/DenniJensen/deutschebahn"
15
+
16
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
17
+ # delete this section to allow pushing this gem to any host.
18
+ if spec.respond_to?(:metadata)
19
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
20
+ else
21
+ raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
22
+ end
23
+
24
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ spec.bindir = "exe"
26
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ["lib"]
28
+
29
+ spec.add_development_dependency "bundler", "~> 1.10"
30
+ spec.add_development_dependency "rake", "~> 10.0"
31
+ spec.add_development_dependency "rspec"
32
+ end
@@ -0,0 +1,21 @@
1
+ require "deutschebahn/version"
2
+ require "deutschebahn/station"
3
+ require 'httparty'
4
+ require 'json'
5
+ require 'uri'
6
+
7
+ module Deutschebahn
8
+ def self.fetch_data
9
+ @response ||= HTTParty.get('http://54.93.120.139/api/station/')
10
+ @response
11
+ end
12
+
13
+ def self.stations
14
+ stations = []
15
+ fetch_data.each do |json_obj|
16
+ hash = json_obj.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
17
+ stations << Station.new(hash)
18
+ end
19
+ stations
20
+ end
21
+ end
@@ -0,0 +1,59 @@
1
+ module Deutschebahn
2
+ class Station
3
+ def initialize(hash)
4
+ @hash = hash
5
+ end
6
+
7
+ def local_distance_traffic?
8
+ @hash[:nahverkehr]
9
+ end
10
+
11
+ def long_distance_traffic?
12
+ @hash[:fernverkehr]
13
+ end
14
+
15
+ def name
16
+ @hash[:station]
17
+ end
18
+
19
+ def state
20
+ @hash[:bundesland]
21
+ end
22
+
23
+ def management
24
+ @hash[:bm]
25
+ end
26
+
27
+ def place
28
+ @hash[:ort]
29
+ end
30
+
31
+ def street
32
+ @hash[:strasse]
33
+ end
34
+
35
+ def transport_association
36
+ @hash[:verkehrsVerb]
37
+ end
38
+
39
+ def stops
40
+ @hash[:bfDsAbk]
41
+ end
42
+
43
+ def supporter
44
+ @hash[:aufgabentraeger]
45
+ end
46
+
47
+ def zipcode
48
+ @hash[:plz]
49
+ end
50
+
51
+ def number
52
+ @hash[:bfNr]
53
+ end
54
+
55
+ def category
56
+ @hash[:katVst]
57
+ end
58
+ end
59
+ end
@@ -0,0 +1,3 @@
1
+ module Deutschebahn
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: deutschebahn
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Dennis Haegler
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-12-12 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.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: A simple api caller for deutsche bahn api.
56
+ email:
57
+ - dennis.haegler@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - Gemfile
65
+ - Gemfile.lock
66
+ - LICENSE
67
+ - README.md
68
+ - Rakefile
69
+ - bin/console
70
+ - bin/deutschebahn
71
+ - bin/setup
72
+ - deutschebahn.gemspec
73
+ - lib/deutschebahn.rb
74
+ - lib/deutschebahn/station.rb
75
+ - lib/deutschebahn/version.rb
76
+ homepage: https://github.com/DenniJensen/deutschebahn
77
+ licenses: []
78
+ metadata:
79
+ allowed_push_host: https://rubygems.org
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ requirements: []
95
+ rubyforge_project:
96
+ rubygems_version: 2.4.8
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: A simple api caller for deutsche bahn api.
100
+ test_files: []