evry 0.0.0 → 0.0.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.
- data/README.md +6 -6
- data/VERSION +1 -1
- data/bin/{every → evry} +0 -0
- data/evry.gemspec +62 -0
- data/lib/{every.rb → evry.rb} +0 -0
- data/test/{test_every.rb → test_evry.rb} +0 -0
- metadata +7 -6
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# evry
|
2
2
|
|
3
3
|
A really simple command for running a command periodically, at set intervals.
|
4
4
|
|
@@ -6,15 +6,15 @@ A really simple command for running a command periodically, at set intervals.
|
|
6
6
|
|
7
7
|
Install with `gem`...
|
8
8
|
|
9
|
-
gem install
|
9
|
+
gem install evry
|
10
10
|
|
11
11
|
...or throw it into your Gemfile, thusly...
|
12
12
|
|
13
|
-
gem '
|
13
|
+
gem 'evry'
|
14
14
|
|
15
15
|
## Usage
|
16
16
|
|
17
|
-
|
17
|
+
evry [options] [time](s|sec|secs|m|min|h|hr|hrs) [command]
|
18
18
|
|
19
19
|
## Allowed options
|
20
20
|
|
@@ -22,13 +22,13 @@ Install with `gem`...
|
|
22
22
|
|
23
23
|
## Example
|
24
24
|
|
25
|
-
+ [23:06:45](max@lola)(~)$ ~>
|
25
|
+
+ [23:06:45](max@lola)(~)$ ~> evry 13s date
|
26
26
|
Fri Oct 12 23:06:58 CDT 2012
|
27
27
|
Fri Oct 12 23:07:11 CDT 2012
|
28
28
|
Fri Oct 12 23:07:24 CDT 2012
|
29
29
|
Fri Oct 12 23:07:37 CDT 2012
|
30
30
|
|
31
|
-
## Contributing to
|
31
|
+
## Contributing to evry
|
32
32
|
|
33
33
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
34
34
|
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.1
|
data/bin/{every → evry}
RENAMED
File without changes
|
data/evry.gemspec
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "evry"
|
8
|
+
s.version = "0.0.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["max thom stahl"]
|
12
|
+
s.date = "2012-10-13"
|
13
|
+
s.description = "A super-simple command for running other commands periodically, at set intervals."
|
14
|
+
s.email = "max@villainousindustries.com"
|
15
|
+
s.executables = ["evry"]
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"LICENSE.txt",
|
18
|
+
"README.md"
|
19
|
+
]
|
20
|
+
s.files = [
|
21
|
+
".document",
|
22
|
+
"Gemfile",
|
23
|
+
"Gemfile.lock",
|
24
|
+
"LICENSE.txt",
|
25
|
+
"README.md",
|
26
|
+
"Rakefile",
|
27
|
+
"VERSION",
|
28
|
+
"bin/evry",
|
29
|
+
"every.gemspec",
|
30
|
+
"evry.gemspec",
|
31
|
+
"lib/evry.rb",
|
32
|
+
"test/helper.rb",
|
33
|
+
"test/test_evry.rb"
|
34
|
+
]
|
35
|
+
s.homepage = "http://github.com/mstahl/every"
|
36
|
+
s.licenses = ["MIT"]
|
37
|
+
s.require_paths = ["lib"]
|
38
|
+
s.rubygems_version = "1.8.24"
|
39
|
+
s.summary = "A super-simple command for running other commands periodically, at set intervals."
|
40
|
+
|
41
|
+
if s.respond_to? :specification_version then
|
42
|
+
s.specification_version = 3
|
43
|
+
|
44
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
45
|
+
s.add_runtime_dependency(%q<getopt>, [">= 0"])
|
46
|
+
s.add_development_dependency(%q<rdoc>, [">= 0"])
|
47
|
+
s.add_development_dependency(%q<bundler>, [">= 0"])
|
48
|
+
s.add_development_dependency(%q<jeweler>, [">= 0"])
|
49
|
+
else
|
50
|
+
s.add_dependency(%q<getopt>, [">= 0"])
|
51
|
+
s.add_dependency(%q<rdoc>, [">= 0"])
|
52
|
+
s.add_dependency(%q<bundler>, [">= 0"])
|
53
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
54
|
+
end
|
55
|
+
else
|
56
|
+
s.add_dependency(%q<getopt>, [">= 0"])
|
57
|
+
s.add_dependency(%q<rdoc>, [">= 0"])
|
58
|
+
s.add_dependency(%q<bundler>, [">= 0"])
|
59
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
data/lib/{every.rb → evry.rb}
RENAMED
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: evry
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -79,7 +79,7 @@ description: A super-simple command for running other commands periodically, at
|
|
79
79
|
intervals.
|
80
80
|
email: max@villainousindustries.com
|
81
81
|
executables:
|
82
|
-
-
|
82
|
+
- evry
|
83
83
|
extensions: []
|
84
84
|
extra_rdoc_files:
|
85
85
|
- LICENSE.txt
|
@@ -92,11 +92,12 @@ files:
|
|
92
92
|
- README.md
|
93
93
|
- Rakefile
|
94
94
|
- VERSION
|
95
|
-
- bin/
|
95
|
+
- bin/evry
|
96
96
|
- every.gemspec
|
97
|
-
-
|
97
|
+
- evry.gemspec
|
98
|
+
- lib/evry.rb
|
98
99
|
- test/helper.rb
|
99
|
-
- test/
|
100
|
+
- test/test_evry.rb
|
100
101
|
homepage: http://github.com/mstahl/every
|
101
102
|
licenses:
|
102
103
|
- MIT
|
@@ -112,7 +113,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
112
113
|
version: '0'
|
113
114
|
segments:
|
114
115
|
- 0
|
115
|
-
hash:
|
116
|
+
hash: -2007752809993455705
|
116
117
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
117
118
|
none: false
|
118
119
|
requirements:
|