bin_script 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/lib/bin_script/bin_script.rb +2 -0
- data/lib/bin_script/version.rb +1 -1
- data/lib/generators/bin/templates/script.rb +1 -1
- metadata +66 -41
data/Gemfile.lock
CHANGED
data/lib/bin_script/version.rb
CHANGED
metadata
CHANGED
@@ -1,47 +1,63 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: bin_script
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 17
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 5
|
10
|
+
version: 0.1.5
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- Lifshits Dmitry
|
9
14
|
- Makarchev Konstantin
|
10
15
|
autorequire: init
|
11
16
|
bindir: bin
|
12
17
|
cert_chain: []
|
13
|
-
|
14
|
-
|
15
|
-
|
18
|
+
|
19
|
+
date: 2012-04-08 00:00:00 +04:00
|
20
|
+
default_executable:
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
16
23
|
name: activesupport
|
17
|
-
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
18
26
|
none: false
|
19
|
-
requirements:
|
20
|
-
- -
|
21
|
-
- !ruby/object:Gem::Version
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 7
|
31
|
+
segments:
|
32
|
+
- 2
|
33
|
+
- 3
|
34
|
+
- 2
|
22
35
|
version: 2.3.2
|
23
36
|
type: :runtime
|
24
|
-
|
25
|
-
|
26
|
-
- !ruby/object:Gem::Dependency
|
37
|
+
version_requirements: *id001
|
38
|
+
- !ruby/object:Gem::Dependency
|
27
39
|
name: rspec
|
28
|
-
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
29
42
|
none: false
|
30
|
-
requirements:
|
31
|
-
- -
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
hash: 3
|
47
|
+
segments:
|
48
|
+
- 0
|
49
|
+
version: "0"
|
34
50
|
type: :development
|
35
|
-
|
36
|
-
|
37
|
-
description: Easy writing and executing bins(executable scripts) in Rails Application
|
38
|
-
(especially for crontab or god)
|
51
|
+
version_requirements: *id002
|
52
|
+
description: Easy writing and executing bins(executable scripts) in Rails Application (especially for crontab or god)
|
39
53
|
email: kostya27@gmail.com
|
40
|
-
executables:
|
54
|
+
executables:
|
41
55
|
- bin_helper
|
42
56
|
extensions: []
|
57
|
+
|
43
58
|
extra_rdoc_files: []
|
44
|
-
|
59
|
+
|
60
|
+
files:
|
45
61
|
- .gitignore
|
46
62
|
- Gemfile
|
47
63
|
- Gemfile.lock
|
@@ -64,30 +80,39 @@ files:
|
|
64
80
|
- lib/generators/bin/templates/spec.rb
|
65
81
|
- spec/bin_script_spec.rb
|
66
82
|
- spec/spec_helper.rb
|
83
|
+
has_rdoc: true
|
67
84
|
homepage: http://github.com/kostya/bin_script
|
68
85
|
licenses: []
|
86
|
+
|
69
87
|
post_install_message:
|
70
88
|
rdoc_options: []
|
71
|
-
|
89
|
+
|
90
|
+
require_paths:
|
72
91
|
- lib
|
73
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
92
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
74
93
|
none: false
|
75
|
-
requirements:
|
76
|
-
- -
|
77
|
-
- !ruby/object:Gem::Version
|
78
|
-
|
79
|
-
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
hash: 3
|
98
|
+
segments:
|
99
|
+
- 0
|
100
|
+
version: "0"
|
101
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
102
|
none: false
|
81
|
-
requirements:
|
82
|
-
- -
|
83
|
-
- !ruby/object:Gem::Version
|
84
|
-
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
hash: 3
|
107
|
+
segments:
|
108
|
+
- 0
|
109
|
+
version: "0"
|
85
110
|
requirements: []
|
111
|
+
|
86
112
|
rubyforge_project:
|
87
|
-
rubygems_version: 1.
|
113
|
+
rubygems_version: 1.3.7
|
88
114
|
signing_key:
|
89
115
|
specification_version: 3
|
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.
|
116
|
+
summary: Easy writing and executing bins(executable scripts) in Rails Application (especially for crontab or god). For my purposes much better than Rake, Thor and Rails Runner.
|
93
117
|
test_files: []
|
118
|
+
|