iruby 0.2.6 → 0.2.7

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: f8536170d50f150a8c7c8bcce0585254deda4f70
4
- data.tar.gz: ec4780f595b0bbfd3c28208fb5b9c4a591d767b4
3
+ metadata.gz: 993862535344a6f784ec1d905f239764b9c80d07
4
+ data.tar.gz: bc6916ae5072c89afa89d3bca5f6575458232aa4
5
5
  SHA512:
6
- metadata.gz: 78ffdfa9155b22d2251f63009ca1874a13def37a03f699a3e1b82b0bbeec7f7b5e3899d55362e10f207a87bf6d8fbd801667f0acae2ee8bfcd80f63239ab58a8
7
- data.tar.gz: 3a582ce433ea3a18999a116eb26320d389749d7c768ece89107d02a7ee96d83e75a3a613d7ac9ac88cbc726510dd69786cb80761eb5896b08c6c431007f7439f
6
+ metadata.gz: f7c6302c618a2a6cba11836c79e3e9a3aa7d4a6da7fde6c3f334e584c40dfa63454bfa32996c92e3db9035c87300a6c1e0326bde56732a4710062a6bd922fcd9
7
+ data.tar.gz: c953ad387205dfb3addc05154bc78ea806756a90408d7732b71fef731b8099c521a8b5878963eed57a4d0085b5ef6c1b6f24d08e65c39423202ebc2167fc2a81
data/CHANGES CHANGED
@@ -1,3 +1,7 @@
1
+ 0.2.7 (2015-07-02)
2
+
3
+ * Fix problem with autoloaded constants in Display, problem with sciruby gem
4
+
1
5
  0.2.6 (2015-06-21)
2
6
 
3
7
  * Check registered kernel and Gemfile to prevent gem loading problems
@@ -134,7 +134,9 @@ module IRuby
134
134
  match do |obj|
135
135
  begin
136
136
  block.call === obj
137
- rescue NameError
137
+ # We have to rescue all exceptions since constant autoloading could fail with a different error
138
+ rescue Exception
139
+ rescue #NameError
138
140
  false
139
141
  end
140
142
  end
@@ -1,3 +1,3 @@
1
1
  module IRuby
2
- VERSION = '0.2.6'
2
+ VERSION = '0.2.7'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Mendler
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-06-21 00:00:00.000000000 Z
12
+ date: 2015-07-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake