save_queue 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,13 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
5
+ .idea/
6
+ doc/
7
+ log/*.log
8
+ /tmp/
9
+ tmp/
10
+ db/*.sqlite3
11
+ /coverage
12
+ /coverage.data
13
+ /.yardoc
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --colour --format documentation
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in save_queue.gemspec
4
+ gemspec
data/HISTORY.md ADDED
@@ -0,0 +1,3 @@
1
+ 0.0.1
2
+ =====
3
+ Initial release. Add README, LICENSE, .gitignore, etc
data/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ Copyright (c) 2011 Alexander N Paramonov
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,11 @@
1
+ Save Queue
2
+ ==========
3
+ Save Queue allows to push related objects to an object's queue for delayed save, that will triggered on object#save. In this case object wil store all related information on its save.
4
+
5
+ Installation
6
+ ------------
7
+ gem install save_queue
8
+
9
+ Copyright
10
+ ---------
11
+ Copyright © 2011 Alexander N Paramonov. See LICENSE for details.
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => [:spec]
@@ -0,0 +1,3 @@
1
+ module SaveQueue
2
+ VERSION = "0.0.1"
3
+ end
data/lib/save_queue.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "save_queue/version"
2
+
3
+ module SaveQueue
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "save_queue/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "save_queue"
7
+ s.version = SaveQueue::VERSION
8
+ s.authors = ["Alexander Paramonov"]
9
+ s.email = ["alexander.n.paramonov@gmail.com"]
10
+ s.homepage = "http://github.com/AlexParamonov/save_queue"
11
+ s.summary = %q{Push related objects to a queue for delayed save}
12
+ s.description = %q{Save Queue allows to push related objects to an object's queue for delayed save, that will triggered on object#save. In this case object wil store all related information on its save.}
13
+
14
+ s.rubyforge_project = "save_queue"
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
+ s.require_paths = ["lib"]
20
+
21
+ # specify any dependencies here; for example:
22
+ s.add_development_dependency "rspec", ">= 2.6"
23
+ # s.add_runtime_dependency "rest-client"
24
+ end
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: save_queue
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Alexander Paramonov
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-11-12 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspec
16
+ requirement: &18435660 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '2.6'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *18435660
25
+ description: Save Queue allows to push related objects to an object's queue for delayed
26
+ save, that will triggered on object#save. In this case object wil store all related
27
+ information on its save.
28
+ email:
29
+ - alexander.n.paramonov@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - .gitignore
35
+ - .rspec
36
+ - Gemfile
37
+ - HISTORY.md
38
+ - LICENSE
39
+ - README.md
40
+ - Rakefile
41
+ - lib/save_queue.rb
42
+ - lib/save_queue/version.rb
43
+ - save_queue.gemspec
44
+ homepage: http://github.com/AlexParamonov/save_queue
45
+ licenses: []
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ! '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ requirements: []
63
+ rubyforge_project: save_queue
64
+ rubygems_version: 1.8.6
65
+ signing_key:
66
+ specification_version: 3
67
+ summary: Push related objects to a queue for delayed save
68
+ test_files: []