forever 0.1.3 → 0.1.4
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/bin/forever +4 -0
- data/forever.gemspec +19 -0
- metadata +6 -4
data/bin/forever
ADDED
data/forever.gemspec
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "forever/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "forever"
|
|
7
|
+
s.version = '0.1.4'
|
|
8
|
+
s.authors = ["DAddYE"]
|
|
9
|
+
s.email = ["d.dagostino@lipsiasoft.com"]
|
|
10
|
+
s.homepage = "https://github.com/daddye/foreverb"
|
|
11
|
+
s.summary = %q{Small daemon framework for ruby}
|
|
12
|
+
s.description = %q{Small daemon framework for ruby, with logging, error handler and more...}
|
|
13
|
+
|
|
14
|
+
s.rubyforge_project = "forever"
|
|
15
|
+
|
|
16
|
+
s.files = `git ls-files`.split("\n")
|
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
19
|
+
end
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 4
|
|
9
|
+
version: 0.1.4
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- DAddYE
|
|
@@ -21,14 +21,16 @@ dependencies: []
|
|
|
21
21
|
description: Small daemon framework for ruby, with logging, error handler and more...
|
|
22
22
|
email:
|
|
23
23
|
- d.dagostino@lipsiasoft.com
|
|
24
|
-
executables:
|
|
25
|
-
|
|
24
|
+
executables:
|
|
25
|
+
- forever
|
|
26
26
|
extensions: []
|
|
27
27
|
|
|
28
28
|
extra_rdoc_files: []
|
|
29
29
|
|
|
30
30
|
files:
|
|
31
31
|
- README.md
|
|
32
|
+
- bin/forever
|
|
33
|
+
- forever.gemspec
|
|
32
34
|
has_rdoc: true
|
|
33
35
|
homepage: https://github.com/daddye/foreverb
|
|
34
36
|
licenses: []
|