rulethu_stock_exchange 0.1.1 → 0.1.3

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
  SHA256:
3
- metadata.gz: 295bf21bc8c77a701152c0db5471607c3b982f1dc9f1ce246c349adfa810be20
4
- data.tar.gz: f39b27e07eb89a65613be71513be934777de2e13c4d4705488e23a8691a90c12
3
+ metadata.gz: 5509290aad0bbc9062f216ddbc39f1c6b4193d0c3dc7de288c2ed3591df3adb4
4
+ data.tar.gz: 3d95cbf91f3e8d5f896e09c0f92ca1d5143c182f02a031df80e0af0273472661
5
5
  SHA512:
6
- metadata.gz: 2fd622fdee23971082c6e50485e47859c86eca64fc2495c225a67f514d9337081c665615beaf8bfcea567d5e84228aa592c45e0990c5e6d796777a49668292f3
7
- data.tar.gz: cd2d92f0e66e183e21b3092e6a087db23bce94cf7fa4a0d0e53c7c2966565ef1ce5a45e3bc806d9f7530edb528c76ab0752b2d49dd2a52c35c8d38545f67e6a0
6
+ metadata.gz: 43200018804031774d38d042e2718402241dcbb733174a58041219f63b8c7b1d0ba6bf907024807a646f6f4d74eefef8b6648ef955918b2445f4ab4e65587d5e
7
+ data.tar.gz: 1be7de7110ba244214c8aba5eeaa31d1fc36d99444edd264d7bf3650027e1b7647f06ad9cd1407f131c85a894693fd01d6f5020f9b834a7419353352c23bf131
@@ -14,7 +14,7 @@ module RulethuStockExchange
14
14
  File.open(filename, 'w') do |f|
15
15
  f.write(JSON.dump(data))
16
16
  end
17
- return filename
17
+ filename
18
18
  end
19
19
 
20
20
  def self.json_to_csv(json_file)
@@ -32,6 +32,7 @@ module RulethuStockExchange
32
32
  csv << row.values
33
33
  end
34
34
  end
35
+ filename
35
36
  end
36
37
  end
37
38
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
- require 'selenium-webdriver'
2
+ require "selenium-webdriver"
3
3
 
4
4
  module RulethuStockExchange
5
5
  class Scraper
@@ -17,9 +17,17 @@ module RulethuStockExchange
17
17
  private
18
18
 
19
19
  def setup_driver
20
- options = Selenium::WebDriver::Chrome::Options.new
20
+ options = Selenium::WebDriver::Firefox::Options.new
21
+
21
22
  options.add_argument("--headless")
22
- Selenium::WebDriver.for :chrome, options: options
23
+ options.add_argument("--disable-gpu")
24
+
25
+ Selenium::WebDriver::Firefox::Service.driver_path = ENV["GECKODRIVER_PATH"] || `which geckodriver`.strip
26
+
27
+ # use argument `:debug` instead of `:info` for detailed logs in case of an error
28
+ Selenium::WebDriver.logger.level = :info
29
+
30
+ Selenium::WebDriver.for :firefox, options: options
23
31
  end
24
32
  end
25
33
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RulethuStockExchange
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rulethu_stock_exchange
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Blessed Sibanda
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-21 00:00:00.000000000 Z
11
+ date: 2024-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: selenium-webdriver
@@ -31,19 +31,12 @@ executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
- - ".idea/.gitignore"
35
- - ".idea/misc.xml"
36
- - ".idea/modules.xml"
37
- - ".idea/rulethu_stock_exchange.iml"
38
- - ".idea/vcs.xml"
39
34
  - ".standard.yml"
40
35
  - CHANGELOG.md
41
36
  - LICENSE.txt
42
37
  - LSE-Data-21-03-2024.png
43
38
  - README.md
44
39
  - Rakefile
45
- - data/lse/21-03-2024-data.csv
46
- - data/lse/21-03-2024-data.json
47
40
  - lib/rulethu_stock_exchange.rb
48
41
  - lib/rulethu_stock_exchange/exchanges.rb
49
42
  - lib/rulethu_stock_exchange/io.rb
@@ -74,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
67
  - !ruby/object:Gem::Version
75
68
  version: '0'
76
69
  requirements: []
77
- rubygems_version: 3.5.6
70
+ rubygems_version: 3.5.7
78
71
  signing_key:
79
72
  specification_version: 4
80
73
  summary: Get Stock Exchange Data
data/.idea/.gitignore DELETED
@@ -1,8 +0,0 @@
1
- # Default ignored files
2
- /shelf/
3
- /workspace.xml
4
- # Editor-based HTTP Client requests
5
- /httpRequests/
6
- # Datasource local storage ignored files
7
- /dataSources/
8
- /dataSources.local.xml
data/.idea/misc.xml DELETED
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectRootManager" version="2" project-jdk-name="asdf: 3.2.2" project-jdk-type="RUBY_SDK" />
4
- </project>
data/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/rulethu_stock_exchange.iml" filepath="$PROJECT_DIR$/.idea/rulethu_stock_exchange.iml" />
6
- </modules>
7
- </component>
8
- </project>
@@ -1,88 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="RUBY_MODULE" version="4">
3
- <component name="ModuleRunConfigurationManager">
4
- <shared />
5
- </component>
6
- <component name="NewModuleRootManager">
7
- <content url="file://$MODULE_DIR$">
8
- <sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
9
- <sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
10
- <sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
11
- </content>
12
- <orderEntry type="inheritedJdk" />
13
- <orderEntry type="sourceFolder" forTests="false" />
14
- <orderEntry type="library" scope="PROVIDED" name="ast (v2.4.2, asdf: 3.2.2) [gem]" level="application" />
15
- <orderEntry type="library" scope="PROVIDED" name="base64 (v0.2.0, asdf: 3.2.2) [gem]" level="application" />
16
- <orderEntry type="library" scope="PROVIDED" name="bundler (v2.5.6, asdf: 3.2.2) [gem]" level="application" />
17
- <orderEntry type="library" scope="PROVIDED" name="json (v2.7.1, asdf: 3.2.2) [gem]" level="application" />
18
- <orderEntry type="library" scope="PROVIDED" name="language_server-protocol (v3.17.0.3, asdf: 3.2.2) [gem]" level="application" />
19
- <orderEntry type="library" scope="PROVIDED" name="lint_roller (v1.1.0, asdf: 3.2.2) [gem]" level="application" />
20
- <orderEntry type="library" scope="PROVIDED" name="minitest (v5.22.3, asdf: 3.2.2) [gem]" level="application" />
21
- <orderEntry type="library" scope="PROVIDED" name="parallel (v1.24.0, asdf: 3.2.2) [gem]" level="application" />
22
- <orderEntry type="library" scope="PROVIDED" name="parser (v3.3.0.5, asdf: 3.2.2) [gem]" level="application" />
23
- <orderEntry type="library" scope="PROVIDED" name="racc (v1.7.3, asdf: 3.2.2) [gem]" level="application" />
24
- <orderEntry type="library" scope="PROVIDED" name="rainbow (v3.1.1, asdf: 3.2.2) [gem]" level="application" />
25
- <orderEntry type="library" scope="PROVIDED" name="rake (v13.1.0, asdf: 3.2.2) [gem]" level="application" />
26
- <orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.9.0, asdf: 3.2.2) [gem]" level="application" />
27
- <orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.6, asdf: 3.2.2) [gem]" level="application" />
28
- <orderEntry type="library" scope="PROVIDED" name="rubocop (v1.62.1, asdf: 3.2.2) [gem]" level="application" />
29
- <orderEntry type="library" scope="PROVIDED" name="rubocop-ast (v1.31.2, asdf: 3.2.2) [gem]" level="application" />
30
- <orderEntry type="library" scope="PROVIDED" name="rubocop-performance (v1.20.2, asdf: 3.2.2) [gem]" level="application" />
31
- <orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.13.0, asdf: 3.2.2) [gem]" level="application" />
32
- <orderEntry type="library" scope="PROVIDED" name="rubyzip (v2.3.2, asdf: 3.2.2) [gem]" level="application" />
33
- <orderEntry type="library" scope="PROVIDED" name="selenium-webdriver (v4.18.1, asdf: 3.2.2) [gem]" level="application" />
34
- <orderEntry type="library" scope="PROVIDED" name="standard (v1.35.1, asdf: 3.2.2) [gem]" level="application" />
35
- <orderEntry type="library" scope="PROVIDED" name="standard-custom (v1.0.2, asdf: 3.2.2) [gem]" level="application" />
36
- <orderEntry type="library" scope="PROVIDED" name="standard-performance (v1.3.1, asdf: 3.2.2) [gem]" level="application" />
37
- <orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v2.5.0, asdf: 3.2.2) [gem]" level="application" />
38
- <orderEntry type="library" scope="PROVIDED" name="websocket (v1.2.10, asdf: 3.2.2) [gem]" level="application" />
39
- </component>
40
- <component name="RakeTasksCache-v2">
41
- <option name="myRootTask">
42
- <RakeTaskImpl id="rake">
43
- <subtasks>
44
- <RakeTaskImpl description="Build rulethu_stock_exchange-0.1.0.gem into the pkg directory" fullCommand="build" id="build" />
45
- <RakeTaskImpl id="build">
46
- <subtasks>
47
- <RakeTaskImpl description="Generate SHA512 checksum if rulethu_stock_exchange-0.1.0.gem into the checksums directory" fullCommand="build:checksum" id="checksum" />
48
- </subtasks>
49
- </RakeTaskImpl>
50
- <RakeTaskImpl description="Remove any temporary products" fullCommand="clean" id="clean" />
51
- <RakeTaskImpl description="Remove any generated files" fullCommand="clobber" id="clobber" />
52
- <RakeTaskImpl description="Build and install rulethu_stock_exchange-0.1.0.gem into system gems" fullCommand="install" id="install" />
53
- <RakeTaskImpl id="install">
54
- <subtasks>
55
- <RakeTaskImpl description="Build and install rulethu_stock_exchange-0.1.0.gem into system gems without network access" fullCommand="install:local" id="local" />
56
- </subtasks>
57
- </RakeTaskImpl>
58
- <RakeTaskImpl description="Create tag v0.1.0 and build and push rulethu_stock_exchange-0.1.0.gem to https://github.com/rulethu/rulethu_stock_exchange.git" fullCommand="release[remote]" id="release[remote]" />
59
- <RakeTaskImpl description="Lint with the Standard Ruby style guide" fullCommand="standard" id="standard" />
60
- <RakeTaskImpl id="standard">
61
- <subtasks>
62
- <RakeTaskImpl description="Lint and automatically make safe fixes with the Standard Ruby style guide" fullCommand="standard:fix" id="fix" />
63
- <RakeTaskImpl description="Lint and automatically make fixes (even unsafe ones" fullCommand="standard:fix_unsafely" id="fix_unsafely" />
64
- </subtasks>
65
- </RakeTaskImpl>
66
- <RakeTaskImpl description="Run the test suite" fullCommand="test" id="test" />
67
- <RakeTaskImpl id="test">
68
- <subtasks>
69
- <RakeTaskImpl description="Print out the test command" fullCommand="test:cmd" id="cmd" />
70
- <RakeTaskImpl description="Show which test files fail when run in isolation" fullCommand="test:isolated" id="isolated" />
71
- <RakeTaskImpl description="Show bottom 25 tests wrt time" fullCommand="test:slow" id="slow" />
72
- <RakeTaskImpl description="" fullCommand="test:deps" id="deps" />
73
- </subtasks>
74
- </RakeTaskImpl>
75
- <RakeTaskImpl description="" fullCommand="default" id="default" />
76
- <RakeTaskImpl description="" fullCommand="release" id="release" />
77
- <RakeTaskImpl id="release">
78
- <subtasks>
79
- <RakeTaskImpl description="" fullCommand="release:guard_clean" id="guard_clean" />
80
- <RakeTaskImpl description="" fullCommand="release:rubygem_push" id="rubygem_push" />
81
- <RakeTaskImpl description="" fullCommand="release:source_control_push" id="source_control_push" />
82
- </subtasks>
83
- </RakeTaskImpl>
84
- </subtasks>
85
- </RakeTaskImpl>
86
- </option>
87
- </component>
88
- </module>
data/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="" vcs="Git" />
5
- </component>
6
- </project>
@@ -1,8 +0,0 @@
1
- Index,Value,Change,High,Low,Prev close
2
- FTSE 100,"7,737.38",-0.92 (-0.01%),"7,749.39","7,711.46","7,738.30"
3
- FTSE 250,"19,484.40",51.59 (0.27%),"19,506.67","19,420.99","19,432.81"
4
- FTSE 350,"4,268.83",1.15 (0.03%),"4,274.93","4,254.63","4,267.68"
5
- FTSE All-Share,"4,225.49",1.13 (0.03%),"4,231.39","4,211.62","4,224.36"
6
- FTSE AIM UK 50 Index,"3,869.45",-23.25 (-0.60%),"3,899.37","3,863.99","3,892.70"
7
- FTSE AIM 100 Index,"3,550.67",4.54 (0.13%),"3,554.44","3,539.44","3,546.13"
8
- FTSE AIM All-Share,735.59,0.03 (-),736.96,734.18,735.56
@@ -1 +0,0 @@
1
- [{"Index":"FTSE 100","Value":"7,737.38","Change":"-0.92 (-0.01%)","High":"7,749.39","Low":"7,711.46","Prev close":"7,738.30"},{"Index":"FTSE 250","Value":"19,484.40","Change":"51.59 (0.27%)","High":"19,506.67","Low":"19,420.99","Prev close":"19,432.81"},{"Index":"FTSE 350","Value":"4,268.83","Change":"1.15 (0.03%)","High":"4,274.93","Low":"4,254.63","Prev close":"4,267.68"},{"Index":"FTSE All-Share","Value":"4,225.49","Change":"1.13 (0.03%)","High":"4,231.39","Low":"4,211.62","Prev close":"4,224.36"},{"Index":"FTSE AIM UK 50 Index","Value":"3,869.45","Change":"-23.25 (-0.60%)","High":"3,899.37","Low":"3,863.99","Prev close":"3,892.70"},{"Index":"FTSE AIM 100 Index","Value":"3,550.67","Change":"4.54 (0.13%)","High":"3,554.44","Low":"3,539.44","Prev close":"3,546.13"},{"Index":"FTSE AIM All-Share","Value":"735.59","Change":"0.03 (-)","High":"736.96","Low":"734.18","Prev close":"735.56"}]