timelapsify 0.1.0 → 0.2.1
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/Gemfile +3 -0
- data/Gemfile.lock +16 -0
- data/README.md +37 -0
- data/lib/timelapsify/rmagick_screenshot_capturer.rb +1 -1
- data/lib/timelapsify/version.rb +1 -1
- metadata +10 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 18b263b0f709dbee8d04f30715827d4c57570ffe
|
|
4
|
+
data.tar.gz: cc38043ff8ba38d3742fb42016648e3263c24e0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84631419ab425fdd767edb9fba7f3b339332b24ca9eff7c3baf09f7e7a9faa1a00c9a41e85085a0327659fd70672b4bfbad4477f985ea2cdc6a4e2fd4f66054b
|
|
7
|
+
data.tar.gz: 1b9105cadcb6e37ab90dcc8c73588df31ef2f9e5f31bd2f49e3c1bd7f9f46fc59c6e920c4c4efc162c0a24fde11c95e0aea336de56385b651fb91e02c566a70e
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# timelapsify
|
|
2
|
+
|
|
3
|
+
A Ruby Gem for taking and making timelapses.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Timelapsify is hosted for your pleasure on RubyGems. You can install it like
|
|
8
|
+
this:
|
|
9
|
+
|
|
10
|
+
```sh
|
|
11
|
+
$ gem install timelapsify
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
If you're looking to get the development environment set up for yourself, you
|
|
15
|
+
can clone the repository, then run the following commands to install it locally:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
$ cd /path/to/cloned/timelapsify
|
|
19
|
+
$ bundle install
|
|
20
|
+
$ gem build timelapsify.gemspec
|
|
21
|
+
$ gem install --local timelapsify-*.gem
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
If you happen to encounter any problems with the installation, they're likely
|
|
25
|
+
due to your personal setup, though you're welcome to open an Issue about it.
|
|
26
|
+
|
|
27
|
+
## Internals
|
|
28
|
+
|
|
29
|
+
Timelapsify uses RMagick and a variety of other programs to capture
|
|
30
|
+
screenshots. These screenshots are then stitched together to create a video
|
|
31
|
+
file.
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
Support for other screenshot capturing programs and other such things would be
|
|
36
|
+
greatly appreciated as a pull request. If you have an idea, feel free to fork
|
|
37
|
+
this repository and add support for other systems.
|
data/lib/timelapsify/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: timelapsify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kristofer Rye
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-05-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rmagick
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '2
|
|
19
|
+
version: '2'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '2
|
|
26
|
+
version: '2'
|
|
27
27
|
description: A tool for creating timelapses by generating screenshots using common
|
|
28
28
|
utilities like scrot.
|
|
29
29
|
email: kristofer.rye@gmail.com
|
|
@@ -32,13 +32,16 @@ executables:
|
|
|
32
32
|
extensions: []
|
|
33
33
|
extra_rdoc_files: []
|
|
34
34
|
files:
|
|
35
|
+
- Gemfile
|
|
36
|
+
- Gemfile.lock
|
|
37
|
+
- README.md
|
|
35
38
|
- bin/timelapsify
|
|
36
39
|
- lib/timelapsify.rb
|
|
37
40
|
- lib/timelapsify/paparazzi.rb
|
|
38
41
|
- lib/timelapsify/rmagick_screenshot_capturer.rb
|
|
39
42
|
- lib/timelapsify/screenshot_capturer.rb
|
|
40
43
|
- lib/timelapsify/version.rb
|
|
41
|
-
homepage: https://github.com/
|
|
44
|
+
homepage: https://github.com/rye/timelapsify
|
|
42
45
|
licenses: []
|
|
43
46
|
metadata: {}
|
|
44
47
|
post_install_message:
|
|
@@ -57,8 +60,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
57
60
|
version: '0'
|
|
58
61
|
requirements: []
|
|
59
62
|
rubyforge_project:
|
|
60
|
-
rubygems_version: 2.
|
|
63
|
+
rubygems_version: 2.5.1
|
|
61
64
|
signing_key:
|
|
62
65
|
specification_version: 4
|
|
63
66
|
summary: A tool for creating timelapses by generating screenshots.
|
|
64
67
|
test_files: []
|
|
68
|
+
has_rdoc:
|