README.md in carrierwave-picture-0.1.0 vs README.md in carrierwave-picture-0.2.0
- old
+ new
@@ -1,25 +1,19 @@
# Carrierwave::Picture
-Simple gem for converting images to webp and progressive jpeg via imagemagic and add picture_tag to action view.
+Simple gem for converting images to webp and jp2 via imagemagic and add picture_tag to action view.
## Installation
-Check that you have installed imagemagick:
+Install dependencies OSX:
- $ convert -version
-
-If not, type in your OSX console:
-
$ brew install imagemagick
+ $ brew install webp
Or in your Debian, Ubuntu console:
- apt-get -y install imagemagick
-
-Or in your CentOS, Fedora console:
-
- yum -y install ImageMagick
+ sudo apt-get install imagemagick
+ sudo apt-get install webp
After ImageMagic installed add this line to your application's Gemfile:
```ruby
gem 'carrierwave-picture'