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 CHANGED
@@ -1,3 +1,3 @@
1
1
  doc
2
2
  .yardoc
3
-
3
+ *.gem
data/README.md CHANGED
@@ -55,5 +55,5 @@ Further Reading
55
55
  License
56
56
  -------
57
57
 
58
- Please see [LICENSE.md|LICENSE.md].
58
+ Please see [LICENSE.md](LICENSE.md).
59
59
 
@@ -1,4 +1,4 @@
1
1
  class Segua
2
2
  # Gem version
3
- Version = "0.1.0"
3
+ Version = "0.1.1"
4
4
  end
@@ -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.0
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
- homepage: http://uaz-kf-a09.mosaic.arizona.edu/
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: []