activerecord-oracle-queue 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e72c0fc49d2aab0e995feda6f2b4beb77f37e046585f757bd9533de94097452d
4
+ data.tar.gz: 1d8a1600ba725a7daf9e5fb83f143525946674213cbe3cd45a9055cc6da43efb
5
+ SHA512:
6
+ metadata.gz: '06567650818e7a7171953a5b6393fb8f71a8982da9cf36eeec572b1b0b5fb8a0333f507f9b205300d92091d722f58453a6b90c8bec863f563cdede96e5c5f848'
7
+ data.tar.gz: c95c030b097a5196718633848f122cb5e66c7fe183b3ac49a1d866b9b9211deea94fca77d84ae75c733886c4e597cd5a1aa2e5dc27422741e51f6c4f9c31a29b
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format documentation
@@ -0,0 +1 @@
1
+ activerecord-oracle-queue
@@ -0,0 +1 @@
1
+ ruby-2.4.3
@@ -0,0 +1,3 @@
1
+ SimpleCov.start do
2
+ add_group "lib", "lib"
3
+ end
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at roman@good2go.ch. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in activerecord-oracle-queue.gemspec
4
+ gemspec
@@ -0,0 +1,16 @@
1
+ guard :rspec, cmd: "bundle exec rspec", all_on_start: true do
2
+ require "guard/rspec/dsl"
3
+ dsl = Guard::RSpec::Dsl.new(self)
4
+
5
+ # Feel free to open issues for suggestions and improvements
6
+
7
+ # RSpec files
8
+ rspec = dsl.rspec
9
+ watch(rspec.spec_helper) { rspec.spec_dir }
10
+ watch(rspec.spec_support) { rspec.spec_dir }
11
+ watch(rspec.spec_files)
12
+
13
+ # Ruby files
14
+ ruby = dsl.ruby
15
+ dsl.watch_spec_files_for(ruby.lib_files)
16
+ end
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Roman Simecek
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,71 @@
1
+ # Activerecord::Oracle::Queue
2
+
3
+ Activerecord::Oracle::Queue provides access to Oracle Advanced Queuing from Rails applications.
4
+
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'activerecord-oracle-queue'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install activerecord-oracle-queue
21
+
22
+ ## Usage
23
+
24
+ ### Migration
25
+
26
+ Create a migration which generates a queue with json stored:
27
+
28
+ ```ruby
29
+ class CreateQueue < ActiveRecord::Migration
30
+ def change
31
+ add_queue :yourqueue
32
+ end
33
+ end
34
+ ```
35
+
36
+ ### Model
37
+
38
+
39
+ ```ruby
40
+ class QueueWorker
41
+ include Activerecord::Oracle::Queue::Watcher.new(:yourqueue)
42
+
43
+ def perform(json)
44
+ puts json
45
+ end
46
+ end
47
+ ```
48
+
49
+ ### Execution
50
+
51
+ ```ruby
52
+ rails runner QueueWorker.watch
53
+ ```
54
+
55
+ ## Development
56
+
57
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
58
+
59
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
60
+
61
+ ## Contributing
62
+
63
+ Bug reports and pull requests are welcome on GitHub at https://github.com/raskhadafi/activerecord-oracle-queue. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
64
+
65
+ ## License
66
+
67
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
68
+
69
+ ## Code of Conduct
70
+
71
+ Everyone interacting in the Activerecord::Oracle::Queue project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/raskhadafi/activerecord-oracle-queue/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,35 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "activerecord/oracle/queue/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "activerecord-oracle-queue"
8
+ spec.version = Activerecord::Oracle::Queue::VERSION
9
+ spec.authors = ["Roman Simecek"]
10
+ spec.email = ["roman.v.simecek@gmail.com"]
11
+
12
+ spec.summary = %q{Extension of ActiveRecord for ORACLE queues}
13
+ spec.description = %q{This gem extends active record and it's migrations for oracle queue support.}
14
+ spec.homepage = "http://good2go.ch"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_runtime_dependency "railties"
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.15"
27
+ spec.add_development_dependency "rake", "~> 10.0"
28
+ spec.add_development_dependency "pry"
29
+ spec.add_development_dependency "guard-rspec"
30
+ spec.add_development_dependency "terminal-notifier-guard"
31
+ spec.add_development_dependency "simplecov"
32
+
33
+ spec.add_development_dependency "yard"
34
+ spec.metadata["yard.run"] = "yri"
35
+ end
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "activerecord/oracle/queue"
5
+ require "pry"
6
+
7
+ Pry.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,10 @@
1
+ require "activerecord/oracle/queue/version"
2
+ require "activerecord/oracle/queue/railtie"
3
+
4
+ module Activerecord
5
+ module Oracle
6
+ module Queue
7
+ autoload :Watcher, "activerecord/oracle/queue/watcher"
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,13 @@
1
+ require "activerecord/oracle/queue/schema"
2
+
3
+ module Activerecord
4
+ module Oracle
5
+ module Queue
6
+ module Glue
7
+ def self.included(base)
8
+ base.send :include, Schema
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,40 @@
1
+ create or replace PACKAGE BODY <%= queue_name %>_queue IS
2
+
3
+ PROCEDURE
4
+ enqueue_message(payload VARCHAR2)
5
+ IS
6
+ msg <%= payload_name %> := <%= payload_name %>(NULL);
7
+ msg_id RAW(16);
8
+ enqueue_options DBMS_AQ.ENQUEUE_OPTIONS_T;
9
+ message_properties DBMS_AQ.MESSAGE_PROPERTIES_T;
10
+ BEGIN
11
+ msg.json := payload;
12
+ message_properties.priority := 1; -- give all messages same priority
13
+ DBMS_AQ.ENQUEUE(
14
+ queue_name => '<%= [schema, queue_name].compact.join(".") %>',
15
+ enqueue_options => enqueue_options,
16
+ message_properties => message_properties,
17
+ payload => msg,
18
+ msgid => msg_id
19
+ );
20
+ END enqueue_message;
21
+
22
+ PROCEDURE
23
+ dequeue_message(payload OUT VARCHAR2)
24
+ IS
25
+ msg <%= payload_name %> := <%= payload_name %>(NULL);
26
+ msg_id RAW(16);
27
+ dequeue_options DBMS_AQ.DEQUEUE_OPTIONS_T;
28
+ message_properties DBMS_AQ.MESSAGE_PROPERTIES_T;
29
+ BEGIN
30
+ DBMS_AQ.DEQUEUE(
31
+ queue_name => '<%= [schema, queue_name].compact.join(".") %>',
32
+ dequeue_options => dequeue_options,
33
+ message_properties => message_properties,
34
+ payload => msg,
35
+ msgid => msg_id
36
+ );
37
+ payload := msg.json;
38
+ END dequeue_message;
39
+
40
+ END <%= queue_name %>_queue;
@@ -0,0 +1,10 @@
1
+ create or replace PACKAGE <%= queue_name %>_queue IS
2
+
3
+ -- Created : <%= Time.now.strftime("%d.%m.%Y %H:%M:%S") %>
4
+ -- Purpose : For en- and dequeue message in the <%= queue_name %> queue
5
+
6
+ PROCEDURE enqueue_message(payload VARCHAR2);
7
+
8
+ PROCEDURE dequeue_message(payload OUT VARCHAR2);
9
+
10
+ END <%= queue_name %>_queue;
@@ -0,0 +1,17 @@
1
+ require "rails"
2
+ require "activerecord/oracle/queue/glue"
3
+
4
+ module Activerecord
5
+ module Oracle
6
+ module Queue
7
+ class Railtie < Rails::Railtie
8
+ initializer "activerecord.oracle.queue.insert_into_active_record" do |app|
9
+ ActiveRecord::Base.send(
10
+ :include,
11
+ Activerecord::Oracle::Queue::Glue
12
+ )
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,125 @@
1
+ require "erb"
2
+ require "pathname"
3
+
4
+ module Activerecord
5
+ module Oracle
6
+ module Queue
7
+ #
8
+ # Module Activerecord::Oracle::Queue::Schema provides migrations for oracle queues
9
+ #
10
+ # @author Roman Simecek <roman.v.simecek@gmail.com>
11
+ #
12
+ module Schema
13
+
14
+ def self.included(base)
15
+ ActiveRecord::ConnectionAdapters::AbstractAdapter.send :include, Statements
16
+ ActiveRecord::Migration::CommandRecorder.send :include, CommandRecorder
17
+ end
18
+
19
+ module Statements
20
+
21
+ def add_queue(queue_name, payload_name: "message_t", payload_object: "json VARCHAR2(4000)")
22
+ schema, queue_name = remove_schema_from_queue_name(queue_name)
23
+
24
+ raise ArgumentError, "The queue name can not be longer than 20 chars." if queue_name.length > 20
25
+
26
+ add_queue_message_type(payload_name, payload_object)
27
+ execute(<<-SQL)
28
+ BEGIN
29
+ DBMS_AQADM.CREATE_QUEUE_TABLE(
30
+ queue_table => '#{queue_name}_tab',
31
+ queue_payload_type => '#{payload_name}'
32
+ );
33
+
34
+ DBMS_AQADM.CREATE_QUEUE(
35
+ queue_name => '#{queue_name}',
36
+ queue_table => '#{queue_name}_tab'
37
+ );
38
+
39
+ DBMS_AQADM.START_QUEUE(
40
+ queue_name => '#{queue_name}'
41
+ );
42
+ END;
43
+ SQL
44
+ add_queue_package(binding)
45
+ end
46
+
47
+ def remove_queue(queue_name, payload_name: "message_t")
48
+ schema, queue_name = remove_schema_from_queue_name(queue_name)
49
+
50
+ execute(<<-SQL)
51
+ BEGIN
52
+ DBMS_AQADM.STOP_QUEUE(
53
+ queue_name => '#{queue_name}'
54
+ );
55
+
56
+ DBMS_AQADM.DROP_QUEUE(
57
+ queue_name => '#{queue_name}'
58
+ );
59
+
60
+ DBMS_AQADM.DROP_QUEUE_TABLE(
61
+ queue_table => '#{queue_name}_tab'
62
+ );
63
+ END;
64
+ SQL
65
+ remove_queue_message_type(payload_name)
66
+ execute("DROP PACKAGE #{queue_name}_queue")
67
+ end
68
+
69
+ private
70
+
71
+ def remove_schema_from_queue_name(queue_name)
72
+ if queue_name.include?(".")
73
+ queue_name.split(".")[0,2]
74
+ else
75
+ [nil, queue_name]
76
+ end
77
+ end
78
+
79
+ def add_queue_package(args)
80
+ execute(
81
+ render_package(args, :definition)
82
+ )
83
+ execute(
84
+ render_package(args, :body)
85
+ )
86
+ end
87
+
88
+ def render_package(args, file)
89
+ ERB.new(
90
+ package_template(file)
91
+ ).result(
92
+ args
93
+ )
94
+ end
95
+
96
+ def package_template(file)
97
+ IO.read(
98
+ Pathname.new(__FILE__).join("../package/#{file}.sql")
99
+ )
100
+ end
101
+
102
+ def add_queue_message_type(payload_name, payload_object)
103
+ execute("CREATE OR REPLACE TYPE #{payload_name} AS OBJECT (#{payload_object})")
104
+ end
105
+
106
+ def remove_queue_message_type(payload_name)
107
+ execute("DROP TYPE #{payload_name}")
108
+ end
109
+ end
110
+
111
+ module CommandRecorder
112
+ def add_queue(*args)
113
+ record(:add_queue, args)
114
+ end
115
+
116
+ private
117
+
118
+ def invert_add_queue(args)
119
+ [:remove_queue, args]
120
+ end
121
+ end
122
+ end
123
+ end
124
+ end
125
+ end
@@ -0,0 +1,7 @@
1
+ module Activerecord
2
+ module Oracle
3
+ module Queue
4
+ VERSION = "1.0.0"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,86 @@
1
+ module Activerecord
2
+ module Oracle
3
+ module Queue
4
+ #
5
+ # Class Activerecord::Oracle::Queue::Watcher provides behaviour for watching queues
6
+ #
7
+ # @author Roman Simecek <roman.simecek@swisslife-select.ch>
8
+ #
9
+ class Watcher < Module
10
+
11
+ def initialize(queue_name)
12
+ @queue_name = queue_name
13
+
14
+ super()
15
+ end
16
+
17
+ def included(receiver)
18
+ receiver.extend ClassMethods
19
+ receiver.const_set :QueueName, @queue_name
20
+ end
21
+
22
+ module InstanceMethods
23
+ def perform(data)
24
+ raise "Has to be implemented"
25
+ end
26
+ end
27
+
28
+ module ClassMethods
29
+
30
+ def watch
31
+ Rails.logger = Logger.new(STDOUT)
32
+ connection = fetch_connection
33
+ cursor = fetch_cursor(connection)
34
+
35
+ cursor.bind_param(":p", nil, String, 4000)
36
+
37
+ Rails.logger.info(log_message("Starting watching queue #{self::QueueName}"))
38
+
39
+ while true
40
+ cursor.exec() # retrieve message
41
+
42
+ begin
43
+ Rails.logger.info(log_message("Retrieve message with #{cursor[":p"]}"))
44
+ json = ActiveSupport::JSON.decode(cursor[":p"])
45
+ instance = self.new
46
+
47
+ Rails.logger.info(log_message("Perform with #{cursor[":p"]}"))
48
+
49
+ instance.perform(json)
50
+ rescue JSON::ParserError => exception
51
+ Rails.logger.error(log_message(exception))
52
+ end
53
+
54
+ connection.commit # remove from AQ. dequeue isn't complete until this happens
55
+ Rails.logger.info(log_message("Perform is done... Dequeueing..."))
56
+ end
57
+ end
58
+
59
+ private
60
+
61
+ def log_message(message)
62
+ "#{self}: #{message}"
63
+ end
64
+
65
+ def fetch_cursor(connection)
66
+ connection.parse(
67
+ "BEGIN #{self::QueueName}_queue.dequeue_message(:p); END;"
68
+ )
69
+ end
70
+
71
+ def fetch_connection
72
+ OCI8.new(
73
+ db_config[:username],
74
+ db_config[:password],
75
+ db_config[:database],
76
+ )
77
+ end
78
+
79
+ def db_config
80
+ ActiveRecord::Base.connection_config
81
+ end
82
+ end
83
+ end
84
+ end
85
+ end
86
+ end
metadata ADDED
@@ -0,0 +1,179 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: activerecord-oracle-queue
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Roman Simecek
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-04-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: railties
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.15'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.15'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: guard-rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: terminal-notifier-guard
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: simplecov
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: yard
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ description: This gem extends active record and it's migrations for oracle queue support.
126
+ email:
127
+ - roman.v.simecek@gmail.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - ".gitignore"
133
+ - ".rspec"
134
+ - ".ruby-gemset"
135
+ - ".ruby-version"
136
+ - ".simplecov"
137
+ - CODE_OF_CONDUCT.md
138
+ - Gemfile
139
+ - Guardfile
140
+ - LICENSE.txt
141
+ - README.md
142
+ - Rakefile
143
+ - activerecord-oracle-queue.gemspec
144
+ - bin/console
145
+ - bin/setup
146
+ - lib/activerecord/oracle/queue.rb
147
+ - lib/activerecord/oracle/queue/glue.rb
148
+ - lib/activerecord/oracle/queue/package/body.sql
149
+ - lib/activerecord/oracle/queue/package/definition.sql
150
+ - lib/activerecord/oracle/queue/railtie.rb
151
+ - lib/activerecord/oracle/queue/schema.rb
152
+ - lib/activerecord/oracle/queue/version.rb
153
+ - lib/activerecord/oracle/queue/watcher.rb
154
+ homepage: http://good2go.ch
155
+ licenses:
156
+ - MIT
157
+ metadata:
158
+ yard.run: yri
159
+ post_install_message:
160
+ rdoc_options: []
161
+ require_paths:
162
+ - lib
163
+ required_ruby_version: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - ">="
166
+ - !ruby/object:Gem::Version
167
+ version: '0'
168
+ required_rubygems_version: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: '0'
173
+ requirements: []
174
+ rubyforge_project:
175
+ rubygems_version: 2.7.6
176
+ signing_key:
177
+ specification_version: 4
178
+ summary: Extension of ActiveRecord for ORACLE queues
179
+ test_files: []