resque-async-method-enhanced 1.3.1 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +5 -1
- data/COMMANDS +2 -2
- data/lib/resque-async-method-enhanced/version.rb +1 -1
- data/resque-async-method-enhanced.gemspec +22 -1
- metadata +12 -5
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
+
# Changelog VERSION = '1.3.2'
|
2
|
+
|
3
|
+
* Add comment on Gemspec
|
4
|
+
|
1
5
|
# Changelog VERSION = '1.3.1'
|
2
6
|
|
3
|
-
* Change name
|
7
|
+
* Change RubyGem name, because, despite the reluctance of Nick Ragaz, owner of this RubyGem, the community should not be deprived of the features added to his code.
|
4
8
|
|
5
9
|
# Changelog VERSION = '1.3'
|
6
10
|
|
data/COMMANDS
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
bundle && bundle exec rake spec
|
2
2
|
gem build resque-async-method-enhanced.gemspec
|
3
|
-
git tag -a v1.3.
|
3
|
+
git tag -a v1.3.2 -m 'version 1.3.2'
|
4
4
|
git push --tags
|
5
|
-
gem push resque-async-method-enhanced-1.3.
|
5
|
+
gem push resque-async-method-enhanced-1.3.2.gem
|
6
6
|
git push origin master
|
7
7
|
|
8
8
|
extra:
|
@@ -4,8 +4,13 @@ require File.expand_path('../lib/resque-async-method-enhanced/version', __FILE__
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ['Joel AZEMAR', 'Nick Ragaz']
|
6
6
|
gem.email = ['joel.azemar@gmail.com', 'nick.ragaz@gmail.com']
|
7
|
-
gem.description = %q{Make Active Support instance methods asynchronous using resque.}
|
8
7
|
gem.summary = %q{Make Active Support instance methods asynchronous using resque.}
|
8
|
+
|
9
|
+
gem.description = <<-EOF
|
10
|
+
Moves method asynchronously in a simple and not degraded manner. Resque plugin resque-lock-timeout
|
11
|
+
allows one to avoid more work concurentiel. Simple to set up and implement this plug in is pretty amazing.
|
12
|
+
EOF
|
13
|
+
|
9
14
|
gem.homepage = 'http://github.com/joel/resque-async-method-enhanced'
|
10
15
|
gem.licenses = [ 'MIT' ]
|
11
16
|
gem.files = `git ls-files`.split($\)
|
@@ -15,9 +20,25 @@ Gem::Specification.new do |gem|
|
|
15
20
|
gem.require_paths = ['lib']
|
16
21
|
gem.version = ResqueAsyncMethodEnhanced::VERSION
|
17
22
|
|
23
|
+
# Hopefully by now:
|
24
|
+
gem.required_ruby_version = '>= 1.9.2'
|
25
|
+
|
18
26
|
gem.add_runtime_dependency 'resque'
|
19
27
|
gem.add_runtime_dependency 'resque-lock-timeout'
|
20
28
|
gem.add_runtime_dependency 'activesupport'
|
29
|
+
|
21
30
|
gem.add_development_dependency 'rspec'
|
22
31
|
gem.add_development_dependency 'rake'
|
32
|
+
|
33
|
+
gem.post_install_message = <<-EOF
|
34
|
+
Moves method asynchronously in a simple and not degraded manner. Resque plugin resque-lock-timeout
|
35
|
+
allows one to avoid more work concurentiel. Simple to set up and implement this plug in is pretty amazing.
|
36
|
+
|
37
|
+
add this line to your Gemfile :
|
38
|
+
gem 'resque'
|
39
|
+
gem 'resque-lock-timeout'
|
40
|
+
gem 'resque-async-method-enhanced'
|
41
|
+
|
42
|
+
Thanks for installing! All your feedback is valuable to us.
|
43
|
+
EOF
|
23
44
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: resque-async-method-enhanced
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-11-
|
13
|
+
date: 2012-11-23 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: resque
|
@@ -92,7 +92,9 @@ dependencies:
|
|
92
92
|
- - ! '>='
|
93
93
|
- !ruby/object:Gem::Version
|
94
94
|
version: '0'
|
95
|
-
description:
|
95
|
+
description: ! " Moves method asynchronously in a simple and not degraded manner.
|
96
|
+
Resque plugin resque-lock-timeout \n allows one to avoid more work concurentiel.
|
97
|
+
Simple to set up and implement this plug in is pretty amazing.\n"
|
96
98
|
email:
|
97
99
|
- joel.azemar@gmail.com
|
98
100
|
- nick.ragaz@gmail.com
|
@@ -121,7 +123,12 @@ files:
|
|
121
123
|
homepage: http://github.com/joel/resque-async-method-enhanced
|
122
124
|
licenses:
|
123
125
|
- MIT
|
124
|
-
post_install_message:
|
126
|
+
post_install_message: ! " Moves method asynchronously in a simple and not degraded
|
127
|
+
manner. Resque plugin resque-lock-timeout \n allows one to avoid more work concurentiel.
|
128
|
+
Simple to set up and implement this plug in is pretty amazing.\n \n add this
|
129
|
+
line to your Gemfile :\n gem 'resque'\n gem 'resque-lock-timeout'\n gem
|
130
|
+
'resque-async-method-enhanced'\n \n Thanks for installing! All your feedback
|
131
|
+
is valuable to us.\n"
|
125
132
|
rdoc_options: []
|
126
133
|
require_paths:
|
127
134
|
- lib
|
@@ -130,7 +137,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
130
137
|
requirements:
|
131
138
|
- - ! '>='
|
132
139
|
- !ruby/object:Gem::Version
|
133
|
-
version:
|
140
|
+
version: 1.9.2
|
134
141
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
135
142
|
none: false
|
136
143
|
requirements:
|