Updated Gems, improved quote retrieval
commit15dcc5230c32e01e28ec018ff75d84fc433b3121
authorpqauvsum <pqauvsum@posteo.cz>
Tue, 14 Jun 2016 16:32:36 +0000 (14 12:32 -0400)
committerpqauvsum <pqauvsum@posteo.cz>
Tue, 14 Jun 2016 16:32:36 +0000 (14 12:32 -0400)
treeb6bd0011514898cdc3871cbe1f206289bfdfb042
parentcd99c3deb9fd5886ff04a2fd60022d26ab1ce014
Updated Gems, improved quote retrieval
- new security types for metal, derivative and index
- layout improvements
- many small bugfixes
81 files changed:
gui/Gemfile
gui/app/assets/stylesheets/application.css
gui/app/assets/stylesheets/asset.css
gui/app/assets/stylesheets/cashposition.css
gui/app/assets/stylesheets/objects/security.css
gui/app/assets/stylesheets/portrait.css
gui/app/assets/stylesheets/position.css
gui/app/assets/stylesheets/watchlist.css
gui/app/controllers/application_controller.rb
gui/app/controllers/figures_controller.rb
gui/app/controllers/objects/security_controller.rb
gui/app/controllers/portrait_controller.rb
gui/app/controllers/sessions_controller.rb
gui/app/helpers/application_helper.rb
gui/app/jobs/fetch_quote_job.rb [copied from gui/app/models/organization.rb with 58% similarity]
gui/app/models/organization.rb
gui/app/models/security.rb
gui/app/models/security_bond.rb
gui/app/models/security_derivative.rb [new file with mode: 0644]
gui/app/models/security_index.rb [new file with mode: 0644]
gui/app/models/security_metal.rb [new file with mode: 0644]
gui/app/views/asset/_quote_form.html.erb
gui/app/views/asset/index.html.erb
gui/app/views/cashposition/show.html.erb
gui/app/views/objects/figurevar/index.html.erb
gui/app/views/objects/organization/index.html.erb
gui/app/views/objects/security/_bond_form.html.erb
gui/app/views/objects/security/_derivative_form.html.erb [new file with mode: 0644]
gui/app/views/objects/security/_index_form.html.erb [new file with mode: 0644]
gui/app/views/objects/security/_metal_form.html.erb [new file with mode: 0644]
gui/app/views/objects/security/index.html.erb
gui/app/views/portrait/_overview_security.html.erb
gui/app/views/portrait/index.html.erb
gui/app/views/position/_security_info_bond.html.erb
gui/app/views/position/_security_info_derivative.html.erb [new file with mode: 0644]
gui/app/views/position/_security_info_index.html.erb [new file with mode: 0644]
gui/app/views/position/_security_info_metal.html.erb [new file with mode: 0644]
gui/app/views/position/new.html.erb
gui/app/views/position/show.html.erb
gui/app/views/report/index.html.erb
gui/app/views/watchlist/index.html.erb
gui/config/initializers/gem_fresh.rb [new file with mode: 0644]
gui/config/routes.rb
gui/db/migrate/20160314151128_new_security_metal.rb [new file with mode: 0644]
gui/db/migrate/20160322094057_new_security_derivative.rb [new file with mode: 0644]
gui/db/migrate/20160322171718_restructure_derivative_security.rb [new file with mode: 0644]
gui/db/migrate/20160421123522_new_security_index.rb [new file with mode: 0644]
gui/db/migrate/20160430183417_smartenized_quote_retrieval.rb [new file with mode: 0644]
gui/db/seeds.rb
gui/db/structure.sql
gui/lib/smr/asset_position.rb
gui/lib/smr/daemon_client.rb [deleted file]
gui/lib/smr/fetch.rb
gui/lib/smr/figures.rb
gui/lib/smr/reapers/ariva.rb [new file with mode: 0644]
gui/lib/smr/reapers/finanzen_net.rb
gui/lib/smr/reapers/frankfurt.rb [new file with mode: 0644]
gui/lib/smr/reapers/kitco.rb [new file with mode: 0644]
gui/lib/smr/reapers/onvista.rb [new file with mode: 0644]
gui/lib/smr/reapers/stuttgart.rb [new file with mode: 0644]
gui/lib/smr/reapers/universal_investment.rb [new file with mode: 0644]
gui/lib/tasks/extract_fixtures.rake [deleted file]
gui/lib/tasks/smr.rake [new file with mode: 0644]
gui/script/load_fixtures
gui/script/smr-quoteupdate.service [new file with mode: 0644]
gui/script/smr-quoteupdate.timer [new file with mode: 0644]
gui/test/fixtures/position.yml
gui/test/fixtures/security.yml
gui/test/fixtures/security_derivative.yml [new file with mode: 0644]
gui/test/fixtures/security_quotesource.yml [deleted file]
gui/test/fixtures/security_symbolextension.yml [deleted file]
gui/test/integration/admin_session_test.rb
gui/test/integration/demo1_user_session_test.rb
gui/test/integration/demo1_working_with_positions_test.rb
gui/test/jobs/fetch_quote_job_test.rb [new file with mode: 0644]
gui/test/jobs/quote_update_scheduler_job_test.rb [new file with mode: 0644]
gui/test/test_helper.rb
gui/test/unit/fetch_test.rb [new file with mode: 0644]
gui/test/unit/figures_test.rb [new file with mode: 0644]
gui/test/unit/security_models_test.rb
gui/vendor/plugins/.gitkeep [deleted file]