giffy 0.0.1 → 0.0.2
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 +4 -4
- data/README.md +15 -0
- data/bin/giffy +0 -3
- data/lib/giffy/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a59959a80c6620dddfe5c3ec1bc5a74ce256508e
|
|
4
|
+
data.tar.gz: 06d60f5e90aedc39b435981960ce2eb3b6112dc0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 204d87b285050e097ca087e5dd827a89f89804ff2ecf841afa0107144b921bbae5d7e70a8a143639d0b0480cef583237c4bca1492041c8cdf39a30821bc9738a
|
|
7
|
+
data.tar.gz: 8705c91ec507680f353cbf8950d5d9b6977f352264a978f1a9169ea6576b5c52a09de972e3ce43207e72dc9e486d3eb0aff481444ca02ab597377ed3466fa678
|
data/README.md
CHANGED
|
@@ -4,6 +4,21 @@ Giffy is a very simple tool to use. The goal was to make it simple to take a scr
|
|
|
4
4
|
and convert it into a gif without needing to remember all the incantations required for ffmpeg
|
|
5
5
|
and ImageMagick
|
|
6
6
|
|
|
7
|
+
## Prerequisites
|
|
8
|
+
|
|
9
|
+
You'll need to have `ffmpeg` and `imagemagick` installed on your system
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
# Mac OSX & Homebrew
|
|
13
|
+
brew install ffmpeg imagemagick
|
|
14
|
+
|
|
15
|
+
# Debian/Ubuntu
|
|
16
|
+
sudo apt-get install ffmpeg imagemagick
|
|
17
|
+
|
|
18
|
+
# Arch Linux
|
|
19
|
+
pacman -S ffmpeg imagemagick
|
|
20
|
+
```
|
|
21
|
+
|
|
7
22
|
## Installation
|
|
8
23
|
|
|
9
24
|
If you want to use the command line tool simply:
|
data/bin/giffy
CHANGED
|
@@ -18,8 +18,6 @@ end
|
|
|
18
18
|
|
|
19
19
|
fallback_load_path(File.join(File.dirname(__FILE__), '..', 'lib')) do
|
|
20
20
|
require 'thor'
|
|
21
|
-
require 'pry'
|
|
22
|
-
require 'pry-debugger'
|
|
23
21
|
require 'giffy'
|
|
24
22
|
end
|
|
25
23
|
|
|
@@ -45,4 +43,3 @@ end
|
|
|
45
43
|
ARGV.unshift('process') unless Giffy::CLI::COMMANDS.include?(ARGV.first)
|
|
46
44
|
|
|
47
45
|
Giffy::CLI.start
|
|
48
|
-
|
data/lib/giffy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: giffy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shopify
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2014-07-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: thor
|
|
@@ -151,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
151
151
|
version: '0'
|
|
152
152
|
requirements: []
|
|
153
153
|
rubyforge_project:
|
|
154
|
-
rubygems_version: 2.
|
|
154
|
+
rubygems_version: 2.2.2
|
|
155
155
|
signing_key:
|
|
156
156
|
specification_version: 4
|
|
157
157
|
summary: Using existing tools such as ffmpeg and ImageMagick easily create gifs
|