bin_script 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +3 -3
- data/bin_script.gemspec +3 -3
- data/lib/bin_script/version.rb +1 -1
- metadata +10 -9
data/README.markdown
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Rails BinScript
|
2
2
|
===============
|
3
3
|
|
4
|
-
Easy writing and executing bins (
|
4
|
+
Easy writing and executing bins(executable scripts) in Rails Application (especially for crontab or god).
|
5
5
|
For my purposes much better than Rake, Thor and Rails Runner.
|
6
6
|
|
7
7
|
Features:
|
@@ -81,10 +81,10 @@ load Gem.bin_path('bin_script', 'bin_helper')
|
|
81
81
|
```
|
82
82
|
|
83
83
|
|
84
|
-
###
|
84
|
+
### Options
|
85
85
|
|
86
86
|
``` ruby
|
87
|
-
class
|
87
|
+
class BlaScript < BinScript
|
88
88
|
self.log_level = Logger::DEBUG
|
89
89
|
self.enable_locking = false
|
90
90
|
self.enable_logging = false
|
data/bin_script.gemspec
CHANGED
@@ -8,10 +8,10 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.authors = ["Lifshits Dmitry", "Makarchev Konstantin"]
|
9
9
|
s.autorequire = %q{init}
|
10
10
|
|
11
|
-
s.description = %q{Easy writing and executing bins (
|
11
|
+
s.description = %q{Easy writing and executing bins(executable scripts) in Rails Application (especially for crontab or god)}
|
12
12
|
|
13
|
-
s.summary = %q{Easy writing and executing bins (
|
14
|
-
For my purposes much better than Rake, Thor and Rails Runner}
|
13
|
+
s.summary = %q{Easy writing and executing bins(executable scripts) in Rails Application (especially for crontab or god).
|
14
|
+
For my purposes much better than Rake, Thor and Rails Runner.}
|
15
15
|
|
16
16
|
s.email = %q{kostya27@gmail.com}
|
17
17
|
s.homepage = %q{http://github.com/kostya/bin_script}
|
data/lib/bin_script/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bin_script
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -14,7 +14,7 @@ date: 2012-04-07 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activesupport
|
17
|
-
requirement: &
|
17
|
+
requirement: &84826530 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ! '>='
|
@@ -22,10 +22,10 @@ dependencies:
|
|
22
22
|
version: 2.3.2
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *84826530
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: rspec
|
28
|
-
requirement: &
|
28
|
+
requirement: &84826330 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
31
|
- - ! '>='
|
@@ -33,9 +33,9 @@ dependencies:
|
|
33
33
|
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
37
|
-
description: Easy writing and executing bins
|
38
|
-
|
36
|
+
version_requirements: *84826330
|
37
|
+
description: Easy writing and executing bins(executable scripts) in Rails Application
|
38
|
+
(especially for crontab or god)
|
39
39
|
email: kostya27@gmail.com
|
40
40
|
executables:
|
41
41
|
- bin_helper
|
@@ -87,6 +87,7 @@ rubyforge_project:
|
|
87
87
|
rubygems_version: 1.8.16
|
88
88
|
signing_key:
|
89
89
|
specification_version: 3
|
90
|
-
summary: Easy writing and executing bins
|
91
|
-
|
90
|
+
summary: Easy writing and executing bins(executable scripts) in Rails Application
|
91
|
+
(especially for crontab or god). For my purposes much better than Rake, Thor and
|
92
|
+
Rails Runner.
|
92
93
|
test_files: []
|