timelapsify 0.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ab23da77ec5a4a1d6c0f674d2235c37d56c15d1d
4
+ data.tar.gz: d6e1657933ce1733fcaaabc7a199b4f9d8149867
5
+ SHA512:
6
+ metadata.gz: e61b08fce71782a9c9cc514e3803d92200c82cb9ad93f1cec8383f330e76a3c7acbb3c2cb575d99bccfe042028111a0146dc413af63836af104863f9f72461ab
7
+ data.tar.gz: 07b84510bb0130811ecbd3794a5cfab5cd8d154f5506249847c223fc5b9917926573215f822320d6b1885603c3db607f5eb46f095f42777f4bb03b1e809c0d2a
data/bin/timelapsify ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ lib_directory = File.expand_path(File.join(File.dirname(__FILE__), %w_.. lib_))
4
+ $LOAD_PATH.unshift(lib_directory) unless $LOAD_PATH.include?(lib_directory)
5
+
6
+ require "timelapsify"
@@ -0,0 +1,7 @@
1
+ module Timelapsify
2
+ class ScreenshotCapturer
3
+ def initialize(utility = :scrot)
4
+ @utility = utility
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module Timelapsify
2
+ VERSION = "0.0.0"
3
+ end
@@ -0,0 +1,2 @@
1
+ require "timelapsify/version"
2
+ require "timelapsify/screenshot_capturer"
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: timelapsify
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Kristofer Rye
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-29 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A tool for creating timelapses by generating screenshots using common
14
+ utilities like scrot.
15
+ email: kristofer.rye@gmail.com
16
+ executables:
17
+ - timelapsify
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - bin/timelapsify
22
+ - lib/timelapsify.rb
23
+ - lib/timelapsify/screenshot_capturer.rb
24
+ - lib/timelapsify/version.rb
25
+ homepage: https://github.com/krye/timelapsify
26
+ licenses: []
27
+ metadata: {}
28
+ post_install_message:
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubyforge_project:
44
+ rubygems_version: 2.2.2
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: A tool for creating timelapses by generating screenshots.
48
+ test_files: []