tdberlintest 0.0.2
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 +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +31 -0
- data/Rakefile +2 -0
- data/lib/langs.yaml +2 -0
- data/lib/stackoverflow_api_fetcher.rb +52 -0
- data/lib/tdberlintest/version.rb +3 -0
- data/lib/tdberlintest.rb +70 -0
- data/lib/tests/test_helper.rb +13 -0
- data/lib/tests/wolfram_api_fetcher_spec.rb +8 -0
- data/lib/wolfram_api_fetcher.rb +75 -0
- data/tdberlintest.gemspec +23 -0
- metadata +85 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: dd2b41e361e8ea3dd708d861270149f2953b8ec1
|
4
|
+
data.tar.gz: 8cac4f2a6c5e9378fb6284f0c7e213739744649f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f3730c230943382187bee151565dde705dae39dd7bf69cd52ab9cb84f53f38b53e85c867308bee28768390f62de25776477f9e94e0897c850b6b01fc9af719e0
|
7
|
+
data.tar.gz: 86bc5dafa9d31be463c1aefc3bc2386b9d847ce9a6f28f795e693215870a13b79eae7beb33d2a57c73df97eb689e9bf82357d482c20f5c84bebe12f0ae1d902b
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Phil Stahlschmidt
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# TdberlinTest
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'tdberlintest'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install tdberlintest
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
TODO: Write usage instructions here
|
24
|
+
|
25
|
+
## Contributing
|
26
|
+
|
27
|
+
1. Fork it ( https://github.com/[my-github-username]/tdberlintest/fork )
|
28
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
29
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
30
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
31
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
data/lib/langs.yaml
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
require 'sanitize'
|
3
|
+
require 'json'
|
4
|
+
require 'awesome_print'
|
5
|
+
|
6
|
+
module TdBerlinTest
|
7
|
+
class StackexchangeApiFetcher
|
8
|
+
DefaultQueryURI = "https://api.stackexchange.com/2.2/tags"
|
9
|
+
|
10
|
+
def initialize(yaml_file)
|
11
|
+
@language_data = parse_yaml_file(yaml_file)
|
12
|
+
end
|
13
|
+
|
14
|
+
def parse_yaml_file(yaml_file)
|
15
|
+
YAML.load_file(yaml_file)
|
16
|
+
end
|
17
|
+
|
18
|
+
def run
|
19
|
+
result_hash = {}
|
20
|
+
@language_data[0]['langs'].each do |language|
|
21
|
+
json = fetch_stackoverflow(language)
|
22
|
+
tag_usage_count = get_tag_usage_count_from_json(json, language)
|
23
|
+
result_hash[language] = tag_usage_count
|
24
|
+
end
|
25
|
+
|
26
|
+
output_result(result_hash)
|
27
|
+
end
|
28
|
+
|
29
|
+
def fetch_stackoverflow(language)
|
30
|
+
url = DefaultQueryURI + "?order=desc&sort=popular&inname=#{language}&site=stackoverflow"
|
31
|
+
open(url).read
|
32
|
+
end
|
33
|
+
|
34
|
+
def get_tag_usage_count_from_json(json, language)
|
35
|
+
parsed = JSON.parse(json)
|
36
|
+
|
37
|
+
parsed['items'].each do |tag|
|
38
|
+
if tag['name'] == language
|
39
|
+
return tag['count']
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def sort_result(hash)
|
45
|
+
hash.sort_by { |language, tag_usage_count| tag_usage_count }.reverse
|
46
|
+
end
|
47
|
+
|
48
|
+
def output_result(hash)
|
49
|
+
ap sort_result(hash).to_h, :indent => -2
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
data/lib/tdberlintest.rb
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'thor'
|
4
|
+
require_relative 'tdberlintest/version'
|
5
|
+
require_relative 'wolfram_api_fetcher'
|
6
|
+
require_relative 'stackoverflow_api_fetcher'
|
7
|
+
|
8
|
+
module TdBerlinTest
|
9
|
+
class TestManager < Thor
|
10
|
+
|
11
|
+
desc 'task1', 'execute task1 of test. specify input yaml file. e.g.: ./test.rb task1 -i lib/langs.yaml'
|
12
|
+
long_desc <<-LONGDESC
|
13
|
+
Query the Wolfram Alpha API and parse the output.
|
14
|
+
|
15
|
+
The Wolfram Alpha API allows you to pass a list of programming languages.
|
16
|
+
|
17
|
+
The result contains a table with a new set of languages which were influenced by the requested programming languages.
|
18
|
+
|
19
|
+
### Input
|
20
|
+
|
21
|
+
A yaml file with the sample contents:
|
22
|
+
|
23
|
+
---
|
24
|
+
- langs: [ruby, scheme, haskell]
|
25
|
+
|
26
|
+
### Output
|
27
|
+
|
28
|
+
A list with languages which were all influenced by the input languages:
|
29
|
+
|
30
|
+
['Perl','Lisp', 'Dylan', 'Elixir', ... ]
|
31
|
+
LONGDESC
|
32
|
+
method_option :input, :aliases => '-i', :desc => 'Specify input yaml file', :default => 'lib/langs.yaml'
|
33
|
+
def task1
|
34
|
+
wolfram_api_fetcher = TdBerlinTest::WolframApiFetcher.new options[:input]
|
35
|
+
wolfram_api_fetcher.run
|
36
|
+
end
|
37
|
+
|
38
|
+
desc 'task2', 'execute task2 of test. specify input yaml file. e.g.: ./test.rb task2 -i lib/langs.yaml'
|
39
|
+
long_desc <<-LONGDESC
|
40
|
+
Query the Stackexchange API and parse the output.
|
41
|
+
|
42
|
+
Handle the input list (programming languages as strings) as stackoverflow tags and retrieve the "stackoverflow-tag-usage-count" from the API.
|
43
|
+
|
44
|
+
### Input
|
45
|
+
|
46
|
+
A yaml file with the sample contents:
|
47
|
+
|
48
|
+
---
|
49
|
+
- langs: [ruby, scheme, haskell]
|
50
|
+
|
51
|
+
### Output
|
52
|
+
|
53
|
+
A hash holding the programming languages as keys and the according "stackoverflow-tag-usage-count" as values, printed in order by value:
|
54
|
+
|
55
|
+
{
|
56
|
+
'ruby' => 10000,
|
57
|
+
'haskell' => 5000,
|
58
|
+
...
|
59
|
+
}
|
60
|
+
|
61
|
+
LONGDESC
|
62
|
+
method_option :input, :aliases => '-i', :desc => 'Specify input yaml file', :default => 'lib/langs.yaml'
|
63
|
+
def task2
|
64
|
+
stackexchange_api_fetcher = TdBerlinTest::StackexchangeApiFetcher.new options[:input]
|
65
|
+
stackexchange_api_fetcher.run
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
TdBerlinTest::TestManager.start(ARGV)
|
@@ -0,0 +1,75 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
require 'sanitize'
|
3
|
+
require 'wolfram'
|
4
|
+
|
5
|
+
module TdBerlinTest
|
6
|
+
class WolframApiFetcher
|
7
|
+
WOLFRAM_APP_ID = 'Q6LH5Y-3JA7L335LL'
|
8
|
+
|
9
|
+
|
10
|
+
def initialize(yaml_file)
|
11
|
+
@language_data = parse_yaml_file(yaml_file)
|
12
|
+
@result_array = []
|
13
|
+
Wolfram.appid = WOLFRAM_APP_ID
|
14
|
+
end
|
15
|
+
|
16
|
+
def parse_yaml_file(yaml_file)
|
17
|
+
YAML.load_file(yaml_file)
|
18
|
+
end
|
19
|
+
|
20
|
+
def run
|
21
|
+
@language_data[0]['langs'].each do |language|
|
22
|
+
fetch_wolfram(language)
|
23
|
+
end
|
24
|
+
|
25
|
+
output_result_as_array
|
26
|
+
end
|
27
|
+
|
28
|
+
def fetch_wolfram(language)
|
29
|
+
options = {:assumption => "*C.#{language}-_*ProgrammingLanguage-" }
|
30
|
+
|
31
|
+
@currently_fetched_language = language
|
32
|
+
|
33
|
+
result = Wolfram.fetch(language, options)
|
34
|
+
|
35
|
+
get_influence_data_from_result(result)
|
36
|
+
end
|
37
|
+
|
38
|
+
def get_influence_data_from_result(result)
|
39
|
+
related_languages_url = result.xml.xpath('//queryresult').attr('related').to_s
|
40
|
+
|
41
|
+
fetch_wolfram_for_related_languages_data(related_languages_url)
|
42
|
+
end
|
43
|
+
|
44
|
+
def fetch_wolfram_for_related_languages_data(url)
|
45
|
+
response_xml = open(url).read
|
46
|
+
|
47
|
+
related_languages = Nokogiri::XML(response_xml).search('relatedquery')
|
48
|
+
|
49
|
+
related_languages.each do |related_language|
|
50
|
+
filter_out_influenced_language(related_language)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def filter_out_influenced_language(related_language)
|
55
|
+
# strip out the <relatedquery> tags
|
56
|
+
related_language = Sanitize.clean(related_language.to_s)
|
57
|
+
|
58
|
+
matches = related_language.scan(/(\S+)(?=\sprogramming language)/i)
|
59
|
+
|
60
|
+
if !matches.empty?
|
61
|
+
programming_language = matches[0][0]
|
62
|
+
|
63
|
+
@currently_fetched_language[0] = @currently_fetched_language[0].capitalize
|
64
|
+
|
65
|
+
if programming_language != @currently_fetched_language
|
66
|
+
@result_array.push(programming_language)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
def output_result_as_array
|
72
|
+
puts ("['" + @result_array.join("','") + "']")
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'tdberlintest/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "tdberlintest"
|
8
|
+
spec.version = TdBerlinTest::VERSION
|
9
|
+
spec.authors = ["Phil Stahlschmidt"]
|
10
|
+
spec.email = ["philstahlschmidt@gmail.com"]
|
11
|
+
spec.summary = %q{td-berlin.com test solution.}
|
12
|
+
spec.description = %q{Provides the solution for task 1 and 2 of the td-berlin.com test.}
|
13
|
+
spec.homepage = "http://www.td-berlin.com"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tdberlintest
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Phil Stahlschmidt
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-01-18 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.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
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
|
+
description: Provides the solution for task 1 and 2 of the td-berlin.com test.
|
42
|
+
email:
|
43
|
+
- philstahlschmidt@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE.txt
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- lib/langs.yaml
|
54
|
+
- lib/stackoverflow_api_fetcher.rb
|
55
|
+
- lib/tdberlintest.rb
|
56
|
+
- lib/tdberlintest/version.rb
|
57
|
+
- lib/tests/test_helper.rb
|
58
|
+
- lib/tests/wolfram_api_fetcher_spec.rb
|
59
|
+
- lib/wolfram_api_fetcher.rb
|
60
|
+
- tdberlintest.gemspec
|
61
|
+
homepage: http://www.td-berlin.com
|
62
|
+
licenses:
|
63
|
+
- MIT
|
64
|
+
metadata: {}
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options: []
|
67
|
+
require_paths:
|
68
|
+
- lib
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0'
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '0'
|
79
|
+
requirements: []
|
80
|
+
rubyforge_project:
|
81
|
+
rubygems_version: 2.2.2
|
82
|
+
signing_key:
|
83
|
+
specification_version: 4
|
84
|
+
summary: td-berlin.com test solution.
|
85
|
+
test_files: []
|