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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 69cf839fbc8a5dafc63fce8f4e0524686dadc738
4
- data.tar.gz: 0a22d1aaaf8f11ca69ba3e0158b5dd969c6c17be
3
+ metadata.gz: 18b263b0f709dbee8d04f30715827d4c57570ffe
4
+ data.tar.gz: cc38043ff8ba38d3742fb42016648e3263c24e0e
5
5
  SHA512:
6
- metadata.gz: 12c40435bebaf1d4db06283499ec8bee3855aaccb36d7dd9b00b4e3df675673676061a1384ffbf3468f31009f4d91349b77003e4b15cf1e00dc8df930ad1e55d
7
- data.tar.gz: 7d182654f84dee2afcadfe2855cbe68d34009529df1ee499c5968c7aa51b85944b7bf15c7011f38d177138c6f388e30592c29f77cdf6706f9de9e07ecd8a5cbc
6
+ metadata.gz: 84631419ab425fdd767edb9fba7f3b339332b24ca9eff7c3baf09f7e7a9faa1a00c9a41e85085a0327659fd70672b4bfbad4477f985ea2cdc6a4e2fd4f66054b
7
+ data.tar.gz: 1b9105cadcb6e37ab90dcc8c73588df31ef2f9e5f31bd2f49e3c1bd7f9f46fc59c6e920c4c4efc162c0a24fde11c95e0aea336de56385b651fb91e02c566a70e
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
@@ -0,0 +1,16 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ timelapsify (0.1.0)
5
+ rmagick (~> 2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ rmagick (2.15.2)
11
+
12
+ PLATFORMS
13
+ ruby
14
+
15
+ DEPENDENCIES
16
+ timelapsify!
@@ -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.
@@ -1,5 +1,5 @@
1
1
  require "date"
2
- require "RMagick"
2
+ require "rmagick"
3
3
 
4
4
  module Timelapsify
5
5
  class RMagickScreenshotCapturer
@@ -1,3 +1,3 @@
1
1
  module Timelapsify
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.1"
3
3
  end
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.0
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: 2014-09-30 00:00:00.000000000 Z
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.13'
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.13'
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/krye/timelapsify
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.2.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: