shelltoad 0.3.0 → 0.3.1

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.
@@ -1,3 +1,8 @@
1
+ h3. 0.3.1
2
+
3
+ * Bugfix configuration
4
+ * Bugfix empty errors list
5
+
1
6
  h3. 0.3.0
2
7
 
3
8
  * Support ssl in configuration
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
@@ -60,3 +60,4 @@ end
60
60
 
61
61
  Hoptoad.auth_token = Shelltoad::Configuration.key
62
62
  Hoptoad.account = Shelltoad::Configuration.account
63
+ Hoptoad.secure = Shelltoad::Configuration.secure?
@@ -13,7 +13,7 @@ class Shelltoad
13
13
 
14
14
  def self.all(options = {})
15
15
  options[:project_id] ||= Configuration.project_id if Configuration.project_id
16
- Hoptoad::Error.find(:all, options).map! do |attributes|
16
+ (Hoptoad::Error.find(:all, options) || []).map! do |attributes|
17
17
  self.new(attributes)
18
18
  end
19
19
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{shelltoad}
8
- s.version = "0.2.5"
8
+ s.version = "0.3.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Bogdan Gusiev"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shelltoad
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 0
10
- version: 0.3.0
9
+ - 1
10
+ version: 0.3.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Bogdan Gusiev