We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb13180 commit 9692873Copy full SHA for 9692873
lib/miro.rb
@@ -3,8 +3,7 @@
3
require "color"
4
require "tempfile"
5
require "open-uri"
6
-require png_lib = (RUBY_ENGINE != "jruby" ? "oily_png" : "chunky_png") # Load the C extension oily_png unless jruby is the platform in use.
7
-
+require png_lib = "chunky_png"
8
require "miro/dominant_colors"
9
10
module Miro
lib/miro/version.rb
@@ -1,3 +1,3 @@
1
2
- VERSION = "0.4.0"
+ VERSION = "0.4.1"
end
miro.gemspec
@@ -13,7 +13,6 @@ Gem::Specification.new do |gem|
13
gem.add_dependency "terrapin"
14
gem.add_dependency "color"
15
gem.add_dependency "chunky_png"
16
- gem.add_dependency "oily_png" if RUBY_ENGINE != "jruby"
17
18
gem.add_development_dependency "rspec"
19
gem.add_development_dependency "fakeweb"
0 commit comments