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 CHANGED
@@ -1,7 +1,7 @@
1
1
  Rails BinScript
2
2
  ===============
3
3
 
4
- Easy writing and executing bins (espesually for crontab or god) in Rails project.
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
- ### Disable lock or log
84
+ ### Options
85
85
 
86
86
  ``` ruby
87
- class Bla < BinScript
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 (espesually for crontab or god) in Rails project}
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 (espesually for crontab or god) in Rails project
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}
@@ -1,4 +1,4 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  class BinScript
3
- VERSION = "0.1.3"
3
+ VERSION = "0.1.4"
4
4
  end
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.3
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: &75985330 !ruby/object:Gem::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: *75985330
25
+ version_requirements: *84826530
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: rspec
28
- requirement: &75985130 !ruby/object:Gem::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: *75985130
37
- description: Easy writing and executing bins (espesually for crontab or god) in Rails
38
- project
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 (espesually for crontab or god) in Rails
91
- project For my purposes much better than Rake, Thor and Rails Runner
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: []