jira_report 0.1.2 → 0.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e4f3e56f1a9b4f7effe382bde1d173ab632a4dd9
4
- data.tar.gz: d8afe2ed1eaf44854bcb5dcd78f6c975afb58dfc
3
+ metadata.gz: d75a222514b53f02ecde9f846ffaa4d6e57d7e8b
4
+ data.tar.gz: aa44fd5e372f0f52f5a6be0153045c36ae97579c
5
5
  SHA512:
6
- metadata.gz: 92c226bfa8364188a8439b104cdc20e1dac3d45ffa066729c5d759ef54841c001be35aad023ea351a4244c387d0860a94a5eb2353504681dfb2cfaf13b36ee19
7
- data.tar.gz: adf1fb6273f165ee741471bcd0e5f58a3e4323fb0defb88ede9c283e1bf6eac07ce8614c83d5d2035bbbc61996717bfb53579ff6bc8f7b348f0fbb69f172abc1
6
+ metadata.gz: 2e89eaaf3a2df8079c8094ce8ce4666fae5d9fc086f1e7bd52639fa72fe85f88e8312894af0eadd84f3cfe4aa5d83342311e22719da691afd1a3ee8e9182e719
7
+ data.tar.gz: 79052cbebede82b19f3ad00bc72f680f5158a559526e19e817e2191cb4a1a93cb306b122b71667d771f5dda2a2edd0c4923bece844ea0e7d4535896304e69a7d
@@ -0,0 +1,15 @@
1
+ #0.1.3
2
+ * Fixed error when configuration file not exist.
3
+ * Now version is properly printed.
4
+ * User can enter password from command line with ruby 2.0 or earlier.
5
+
6
+ #0.1.2
7
+ * README updates to be parsed with Yard.
8
+
9
+ #0.1.1
10
+ * Reporter class can be used directly from Ruby.
11
+ * Command line parameters reader improvements.
12
+
13
+ #0.0.2
14
+ * Added basic specs.
15
+ * Bug fixing.
@@ -1,6 +1,8 @@
1
1
  require 'jira_report/options'
2
2
  require 'jira_report/config_loader'
3
3
  require 'jira_report/reporter'
4
+ require 'jira_report/version'
5
+ require 'io/console'
4
6
 
5
7
  module JiraReport
6
8
  class Cli
@@ -89,7 +91,12 @@ module JiraReport
89
91
  # Loads configuration from configuration file.
90
92
  def load_config(path)
91
93
  config_path = path ? path : DEFAULT_CONFIG_PATH
92
- @config = ConfigLoader.load_config(config_path)
94
+ begin
95
+ @config = ConfigLoader.load_config(config_path)
96
+ rescue => e
97
+ # Config not loaded from configuration file.
98
+ # Ignore it.
99
+ end
93
100
  end
94
101
 
95
102
  # Reads required options from user input if those
@@ -1,3 +1,3 @@
1
1
  module JiraReport
2
- VERSION = "0.1.2"
2
+ VERSION = '0.1.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jira_report
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vitalii Elenhaupt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-11 00:00:00.000000000 Z
11
+ date: 2015-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parseconfig
@@ -90,6 +90,7 @@ extra_rdoc_files: []
90
90
  files:
91
91
  - ".gitignore"
92
92
  - ".travis.yml"
93
+ - CHANGELOG.md
93
94
  - Gemfile
94
95
  - LICENSE.txt
95
96
  - README.md