ulla 0.9.5 → 0.9.6

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.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.9.6 18/03/2009
2
+
3
+ * Warns if Rmagick is not properly installed or missing.
4
+
1
5
  == 0.9.5 18/03/2009
2
6
 
3
7
  * Fixed a bug in the order of requiring libraries
data/Manifest.txt CHANGED
@@ -7,13 +7,11 @@ Rakefile
7
7
  bin/ulla
8
8
  config/website.yml
9
9
  config/website.yml.sample
10
- lib/.nmatrix_extensions.rb.swp
11
10
  lib/math_extensions.rb
12
11
  lib/narray_extensions.rb
13
12
  lib/nmatrix_extensions.rb
14
13
  lib/string_extensions.rb
15
14
  lib/ulla.rb
16
- lib/ulla/.cli.rb.swp
17
15
  lib/ulla/cli.rb
18
16
  lib/ulla/environment.rb
19
17
  lib/ulla/environment_class_hash.rb
@@ -5,8 +5,8 @@ require 'facets'
5
5
  begin
6
6
  require 'rvg/rvg'
7
7
  include Magick
8
- rescue
9
- $logger.warn "A RubyGems package, 'rmagick' is not found, so heat maps cannot be generated."
8
+ rescue Exception => e
9
+ $logger.warn "#{e.to_s.chomp} For this reason, heat maps cannot be generated."
10
10
  $no_rmagick = true
11
11
  end
12
12
 
@@ -4,8 +4,8 @@ require 'facets'
4
4
  begin
5
5
  require 'RMagick'
6
6
  include Magick
7
- rescue
8
- $logger.warn "A RubyGems package, 'rmagick' is not found, so heat maps cannot be generated."
7
+ rescue Exception => e
8
+ $logger.warn "#{e.to_s.chomp} For this reason, heat maps cannot be generated."
9
9
  $no_rmagick = true
10
10
  end
11
11
 
data/lib/ulla.rb CHANGED
@@ -2,5 +2,5 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module Ulla
5
- VERSION = '0.9.5'
5
+ VERSION = '0.9.6'
6
6
  end
data/ulla.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{ulla}
5
- s.version = "0.9.5"
5
+ s.version = "0.9.6"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Semin Lee"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ulla
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Semin Lee
@@ -95,13 +95,11 @@ files:
95
95
  - bin/ulla
96
96
  - config/website.yml
97
97
  - config/website.yml.sample
98
- - lib/.nmatrix_extensions.rb.swp
99
98
  - lib/math_extensions.rb
100
99
  - lib/narray_extensions.rb
101
100
  - lib/nmatrix_extensions.rb
102
101
  - lib/string_extensions.rb
103
102
  - lib/ulla.rb
104
- - lib/ulla/.cli.rb.swp
105
103
  - lib/ulla/cli.rb
106
104
  - lib/ulla/environment.rb
107
105
  - lib/ulla/environment_class_hash.rb
Binary file
data/lib/ulla/.cli.rb.swp DELETED
Binary file