├── .dockerignore ├── .gitignore ├── .ruby-version ├── .travis.yml ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── Rakefile ├── app ├── assets │ ├── audio │ │ ├── success.mp3 │ │ └── warning.mp3 │ ├── config │ │ └── manifest.js │ ├── javascripts │ │ ├── application.coffee │ │ ├── component_data │ │ │ ├── global.js.coffee │ │ │ ├── market.js.coffee │ │ │ ├── member.js.coffee │ │ │ └── place_order.js.coffee │ │ ├── component_mixin │ │ │ ├── item_list.js.coffee │ │ │ ├── notification.js.coffee │ │ │ └── order_input.js.coffee │ │ ├── component_ui │ │ │ ├── account_balance.js.coffee │ │ │ ├── account_summary.js.coffee │ │ │ ├── auto_window.js.coffee │ │ │ ├── candlestick.js.coffee │ │ │ ├── depth.js.coffee │ │ │ ├── flash_message.js.coffee │ │ │ ├── float.js.coffee │ │ │ ├── header.js.coffee │ │ │ ├── key_bind.js.coffee │ │ │ ├── market_switch.js.coffee │ │ │ ├── market_ticker.js.coffee │ │ │ ├── market_trades.js.coffee │ │ │ ├── my_orders.js.coffee │ │ │ ├── order_book.js.coffee │ │ │ ├── order_price.js.coffee │ │ │ ├── order_total.js.coffee │ │ │ ├── order_volume.js.coffee │ │ │ ├── place_order.js.coffee │ │ │ ├── push_button.js.coffee │ │ │ └── switch.js.coffee │ │ ├── helpers │ │ │ └── formatter.js.coffee │ │ ├── highcharts │ │ │ ├── config.js.coffee │ │ │ └── technical_indicators.js │ │ ├── html5.js │ │ ├── lib │ │ │ ├── ajax.js.coffee │ │ │ ├── angular-ui-router.js │ │ │ ├── notifier.js.coffee │ │ │ ├── peatio_model.js.coffee │ │ │ ├── pusher_connection.js.coffee │ │ │ ├── pusher_subscriber.js.coffee │ │ │ ├── sfx.js.coffee │ │ │ └── tiny-pubsub.js │ │ ├── locales │ │ │ └── en.js.erb │ │ └── templates │ │ │ ├── flash_message.jst.ejs │ │ │ ├── hint_order_success.jst.ejs │ │ │ ├── hint_order_warning.jst.ejs │ │ │ ├── market_trade.jst.ejs │ │ │ ├── my_trade.jst.ejs │ │ │ ├── order_active.jst.ejs │ │ │ ├── order_book_ask.jst.ejs │ │ │ ├── order_book_bid.jst.ejs │ │ │ ├── order_done.jst.ejs │ │ │ └── tooltip.jst.ejs │ └── stylesheets │ │ ├── application.scss │ │ ├── layouts │ │ ├── _basic.scss │ │ └── _positions.scss │ │ └── vars │ │ ├── _basic.scss │ │ ├── _bootstrap.scss │ │ ├── _bootstrap_market.scss │ │ └── _market.scss ├── controllers │ ├── application_controller.rb │ └── markets_controller.rb ├── helpers │ └── application_helper.rb └── views │ ├── layouts │ └── application.html.erb │ └── markets │ ├── _account_summary.html.erb │ ├── _ask_entry.html.erb │ ├── _balance.html.erb │ ├── _bid_entry.html.erb │ ├── _candlestick.html.erb │ ├── _depths.html.erb │ ├── _header.html.erb │ ├── _indicator_switch.html.erb │ ├── _language.html.erb │ ├── _market_list.html.erb │ ├── _market_trades.html.erb │ ├── _mask.html.erb │ ├── _my_orders.html.erb │ ├── _order_book.html.erb │ ├── _range_switch.html.erb │ ├── _settings.html.erb │ ├── _ticker.html.erb │ └── show.html.erb ├── bin ├── bump ├── bundle ├── init_config ├── link_config ├── rails ├── rake └── setup ├── ci └── bump.rb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ ├── shared.rb │ ├── shared │ │ └── logger.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── cookies_serializer.rb │ ├── faraday.rb │ ├── filter_parameter_logging.rb │ ├── hash.rb │ └── inflections.rb ├── locales │ ├── client.en.yml │ └── server.en.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── templates │ └── application.yml.erb ├── lib ├── js_locale_helper.rb ├── peatio_trading_ui.rb └── peatio_trading_ui │ └── version.rb ├── public ├── 404.html ├── 422.html └── 500.html └── vendor ├── assets ├── javascripts │ ├── bignumber.js │ ├── bootstrap-datetimepicker.js │ ├── bootstrap-switch.min.js │ ├── cookies.min.js │ ├── es5-sham.min.js │ ├── es5-shim.min.js │ ├── flight.min.js │ ├── highstock.js │ ├── html5shiv.js │ ├── i18n.js │ ├── jquery-timing.min.js │ ├── jquery.mousewheel.js │ ├── jquery.nicescroll.min.js │ ├── list.js │ ├── pusher.min.js │ ├── respond.min.js │ ├── scrollIt.js │ └── underscore.js └── stylesheets │ ├── bootstrap-switch.min.css │ └── csshake.min.css └── plugins └── .gitkeep /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/audio/success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/audio/success.mp3 -------------------------------------------------------------------------------- /app/assets/audio/warning.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/audio/warning.mp3 -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/application.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_data/global.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_data/global.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_data/market.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_data/market.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_data/member.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_data/member.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_data/place_order.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_data/place_order.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_mixin/item_list.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_mixin/item_list.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_mixin/notification.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_mixin/notification.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_mixin/order_input.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_mixin/order_input.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/account_balance.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/account_balance.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/account_summary.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/account_summary.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/auto_window.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/auto_window.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/candlestick.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/candlestick.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/depth.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/depth.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/flash_message.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/flash_message.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/float.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/float.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/header.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/header.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/key_bind.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/key_bind.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/market_switch.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/market_switch.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/market_ticker.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/market_ticker.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/market_trades.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/market_trades.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/my_orders.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/my_orders.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/order_book.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/order_book.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/order_price.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/order_price.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/order_total.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/order_total.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/order_volume.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/order_volume.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/place_order.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/place_order.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/push_button.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/push_button.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/component_ui/switch.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/component_ui/switch.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/helpers/formatter.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/helpers/formatter.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/highcharts/config.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/highcharts/config.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/highcharts/technical_indicators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/highcharts/technical_indicators.js -------------------------------------------------------------------------------- /app/assets/javascripts/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/html5.js -------------------------------------------------------------------------------- /app/assets/javascripts/lib/ajax.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/lib/ajax.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/lib/angular-ui-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/lib/angular-ui-router.js -------------------------------------------------------------------------------- /app/assets/javascripts/lib/notifier.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/lib/notifier.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/lib/peatio_model.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/lib/peatio_model.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/lib/pusher_connection.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/lib/pusher_connection.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/lib/pusher_subscriber.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/lib/pusher_subscriber.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/lib/sfx.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/lib/sfx.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/lib/tiny-pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/lib/tiny-pubsub.js -------------------------------------------------------------------------------- /app/assets/javascripts/locales/en.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/locales/en.js.erb -------------------------------------------------------------------------------- /app/assets/javascripts/templates/flash_message.jst.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/templates/flash_message.jst.ejs -------------------------------------------------------------------------------- /app/assets/javascripts/templates/hint_order_success.jst.ejs: -------------------------------------------------------------------------------- 1 | 2 | <%= msg %> 3 | 4 | -------------------------------------------------------------------------------- /app/assets/javascripts/templates/hint_order_warning.jst.ejs: -------------------------------------------------------------------------------- 1 | 2 | <%= msg %> 3 | 4 | -------------------------------------------------------------------------------- /app/assets/javascripts/templates/market_trade.jst.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/templates/market_trade.jst.ejs -------------------------------------------------------------------------------- /app/assets/javascripts/templates/my_trade.jst.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/templates/my_trade.jst.ejs -------------------------------------------------------------------------------- /app/assets/javascripts/templates/order_active.jst.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/templates/order_active.jst.ejs -------------------------------------------------------------------------------- /app/assets/javascripts/templates/order_book_ask.jst.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/templates/order_book_ask.jst.ejs -------------------------------------------------------------------------------- /app/assets/javascripts/templates/order_book_bid.jst.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/templates/order_book_bid.jst.ejs -------------------------------------------------------------------------------- /app/assets/javascripts/templates/order_done.jst.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/templates/order_done.jst.ejs -------------------------------------------------------------------------------- /app/assets/javascripts/templates/tooltip.jst.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/javascripts/templates/tooltip.jst.ejs -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/layouts/_basic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/stylesheets/layouts/_basic.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/layouts/_positions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/stylesheets/layouts/_positions.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/vars/_basic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/stylesheets/vars/_basic.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/vars/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/stylesheets/vars/_bootstrap.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/vars/_bootstrap_market.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/stylesheets/vars/_bootstrap_market.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/vars/_market.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/assets/stylesheets/vars/_market.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/markets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/controllers/markets_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/markets/_account_summary.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_account_summary.html.erb -------------------------------------------------------------------------------- /app/views/markets/_ask_entry.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_ask_entry.html.erb -------------------------------------------------------------------------------- /app/views/markets/_balance.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_balance.html.erb -------------------------------------------------------------------------------- /app/views/markets/_bid_entry.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_bid_entry.html.erb -------------------------------------------------------------------------------- /app/views/markets/_candlestick.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_candlestick.html.erb -------------------------------------------------------------------------------- /app/views/markets/_depths.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_depths.html.erb -------------------------------------------------------------------------------- /app/views/markets/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_header.html.erb -------------------------------------------------------------------------------- /app/views/markets/_indicator_switch.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_indicator_switch.html.erb -------------------------------------------------------------------------------- /app/views/markets/_language.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_language.html.erb -------------------------------------------------------------------------------- /app/views/markets/_market_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_market_list.html.erb -------------------------------------------------------------------------------- /app/views/markets/_market_trades.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_market_trades.html.erb -------------------------------------------------------------------------------- /app/views/markets/_mask.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_mask.html.erb -------------------------------------------------------------------------------- /app/views/markets/_my_orders.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_my_orders.html.erb -------------------------------------------------------------------------------- /app/views/markets/_order_book.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_order_book.html.erb -------------------------------------------------------------------------------- /app/views/markets/_range_switch.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_range_switch.html.erb -------------------------------------------------------------------------------- /app/views/markets/_settings.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_settings.html.erb -------------------------------------------------------------------------------- /app/views/markets/_ticker.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/_ticker.html.erb -------------------------------------------------------------------------------- /app/views/markets/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/app/views/markets/show.html.erb -------------------------------------------------------------------------------- /bin/bump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/bin/bump -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/init_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/bin/init_config -------------------------------------------------------------------------------- /bin/link_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/bin/link_config -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/bin/setup -------------------------------------------------------------------------------- /ci/bump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/ci/bump.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/shared.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/environments/shared.rb -------------------------------------------------------------------------------- /config/environments/shared/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/environments/shared/logger.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/faraday.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/initializers/faraday.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/initializers/hash.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/locales/client.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/locales/client.en.yml -------------------------------------------------------------------------------- /config/locales/server.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/locales/server.en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/templates/application.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/config/templates/application.yml.erb -------------------------------------------------------------------------------- /lib/js_locale_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/lib/js_locale_helper.rb -------------------------------------------------------------------------------- /lib/peatio_trading_ui.rb: -------------------------------------------------------------------------------- 1 | module PeatioTradingUI 2 | 3 | end 4 | -------------------------------------------------------------------------------- /lib/peatio_trading_ui/version.rb: -------------------------------------------------------------------------------- 1 | module PeatioTradingUI 2 | VERSION = '1.9.0.alpha' 3 | end 4 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/public/500.html -------------------------------------------------------------------------------- /vendor/assets/javascripts/bignumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/bignumber.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap-switch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/bootstrap-switch.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/cookies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/cookies.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/es5-sham.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/es5-sham.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/es5-shim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/es5-shim.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/flight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/flight.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/highstock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/highstock.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/html5shiv.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/i18n.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery-timing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/jquery-timing.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/jquery.mousewheel.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.nicescroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/jquery.nicescroll.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/list.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/pusher.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/pusher.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/respond.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/scrollIt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/scrollIt.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/javascripts/underscore.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap-switch.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/stylesheets/bootstrap-switch.min.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/csshake.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubykube/peatio-trading-ui/HEAD/vendor/assets/stylesheets/csshake.min.css -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------