qc 0.6.0 → 0.6.1

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
  SHA1:
3
- metadata.gz: 5c22c9b2e8145ff0e939d3214848341e0782b3b2
4
- data.tar.gz: 17b4c70a3a44993b71406d0994f45607734e70f4
3
+ metadata.gz: c64feb5cbc82a011016f90622f963b55b64a7c69
4
+ data.tar.gz: 60e392be59ad36bf92b350b045f116b1df7b08c7
5
5
  SHA512:
6
- metadata.gz: 15e0d3601726a5df294eda0a402eec49e4667807e095dd03cfdb54050ed5c17097180dc6b3a90505c974372fd4ed85e32f0b2254c35c1b44f974f81446b6ce1a
7
- data.tar.gz: c741d944839ae9b3f8d8f6abf86e7c7cc01d7ed9b79d9b6244b5703c142d90a09072d9aa64614111ee01a6cee3e02794f371353b72b6cacb35855e0201fc39fd
6
+ metadata.gz: d0c5969db8d962e646a8d38ffd98ca3d6c5166f41c92ccd7235aaf4061253f2fb0fb5c2834d77ea687defb510dff6895ad41ba3ae73dd423f33959047bbf681a
7
+ data.tar.gz: 06bbec814047319f0c0c6798b2e2b782229f5f750105aa29a86481e9081ab7b6036e125c387e61ae132da1c4cbbcf671d10752d0a93bbe072414a19325c0297a
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- qc (0.6.0)
4
+ qc (0.6.1)
5
5
  rest-client (~> 2.0.2)
6
6
  vcr (~> 3.0.3)
7
7
  webmock (~> 3.1.0)
data/README.md CHANGED
@@ -26,7 +26,7 @@ When no command is provided, it will push your changes to QuantConnect, compile
26
26
 
27
27
  ```shell
28
28
  qc
29
- qc --open # To open the results in QuantConnect
29
+ qc --open # To open the results in QuantConnect while running the backtest
30
30
  ```
31
31
 
32
32
  This is equivalent to executing `qc push`, `qc compile` and `qc backtest` in sequence.
@@ -39,7 +39,7 @@ qc [command]
39
39
 
40
40
  The supported commands are:
41
41
 
42
- | Command| description|
42
+ | Command| Description|
43
43
  | -- | -- |
44
44
  | `qc login`| It will ask for the api credentials you can find in [your QuantConnect account page](https://www.quantconnect.com/account). They will be stored in `~/.qc`. You only need to login once. |
45
45
  | `qc logout`| Logout from QuantConnect clearing the credentials stored locally. |
@@ -58,7 +58,7 @@ qc --open
58
58
  qc backtest --open
59
59
  ```
60
60
 
61
- **This option only works on MacOS**. quantconnect.com currently doesn't offer an URL endpoint to open backtest results. In MacOS, it will use an Automator workflow that will open the project and show its latest results by simulating a click on the corresponding option. See [this discussion](https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!msg/lean-engine/7AiEl3RVv38/PGnFQzBXAQAJ).
61
+ **This option only works in MacOS**. quantconnect.com currently doesn't offer an URL endpoint to open backtest results. In MacOS, it will use an Automator workflow that will open the project and show its latest results by simulating a click on the corresponding option. [See this discussion](https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!msg/lean-engine/7AiEl3RVv38/PGnFQzBXAQAJ).
62
62
 
63
63
  ## Development
64
64
 
@@ -257,7 +257,7 @@ module Qc
257
257
  end
258
258
 
259
259
  def changed_files
260
- all_files = Dir["*.{#{project_settings.file_extensions}}"]
260
+ all_files = Dir["**/*.{#{project_settings.file_extensions}}"]
261
261
 
262
262
  return all_files unless project_settings.last_sync_at
263
263
 
@@ -1,3 +1,3 @@
1
1
  module Qc
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jorge Manrubia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-15 00:00:00.000000000 Z
11
+ date: 2017-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client