segua 0.1.0 → 0.1.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/.gitignore +1 -1
- data/README.md +1 -1
- data/lib/segua/version.rb +1 -1
- data/segua.gemspec +16 -0
- metadata +3 -2
data/.gitignore
CHANGED
data/README.md
CHANGED
data/lib/segua/version.rb
CHANGED
data/segua.gemspec
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
$:.push File.expand_path('../lib', __FILE__)
|
|
2
|
+
require 'segua/version'
|
|
3
|
+
|
|
4
|
+
Gem::Specification.new do |s|
|
|
5
|
+
s.name = 'segua'
|
|
6
|
+
s.version = Segua::Version
|
|
7
|
+
s.authors = ['Sam Rawlins']
|
|
8
|
+
s.email = ['katt-core@listserv.arizona.edu']
|
|
9
|
+
s.homepage = 'http://uaz-kf-a09.mosaic.arizona.edu/gitlab/segua/master/tree'
|
|
10
|
+
s.summary = %q{Follow the most recently modified files in a directory.}
|
|
11
|
+
s.description = %q{Segua acts like tail -f, except that it accepts a directory as input, not a file. It then constantly evaluates which file is the most recently modified, and follows that file.}
|
|
12
|
+
|
|
13
|
+
s.files = `git ls-files`.split("\n")
|
|
14
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
15
|
+
s.require_paths = ['lib']
|
|
16
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: segua
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -28,7 +28,8 @@ files:
|
|
|
28
28
|
- bin/segua
|
|
29
29
|
- lib/segua.rb
|
|
30
30
|
- lib/segua/version.rb
|
|
31
|
-
|
|
31
|
+
- segua.gemspec
|
|
32
|
+
homepage: http://uaz-kf-a09.mosaic.arizona.edu/gitlab/segua/master/tree
|
|
32
33
|
licenses: []
|
|
33
34
|
post_install_message:
|
|
34
35
|
rdoc_options: []
|