workflow-sequel 0.0.1

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c27be5d0b5032f934b39c6d5a483977a41f15cbd
4
+ data.tar.gz: 9790ba24d18671a7e8394c8cb9efd7ed62f0d619
5
+ SHA512:
6
+ metadata.gz: 560fd002d84c048e295c554b401297d891686d4baf285df0cef593d247198eb9a92eef6265747519a2463678df083802f3e6104fe653788d2fc3c2bf6fdae5e5
7
+ data.tar.gz: 1a60cd71239e5ed994d74cb8ebec210f98dcd2d09b3f79ea7ddcfd72f1996d5169fbc0597b41b4f1c57e090f158465d546f8171f4562a1fb3dc897c44fbe669b
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ ## 0.0.1 (2014-08-26)
4
+
5
+ * Initial release with support for [workflow 1.1.0](https://github.com/geekq/workflow/tree/v1.1.0)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in workflow-sequel.gemspec
4
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 [maier.io UG (haftungsbeschränkt)](http://www.maier.io/)
2
+
3
+ # MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,54 @@
1
+ # Workflow::Sequel
2
+
3
+ Adds support for [Sequel][] to the [workflow][] gem.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's `Gemfile`:
8
+
9
+ ```ruby
10
+ gem 'workflow-sequel'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+
21
+ ```bash
22
+ $ gem install workflow-sequel
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ Include `Workflow::Sequel` in your model.
28
+
29
+ ```ruby
30
+ class Example < Sequel::Model
31
+ include Workflow
32
+ include Workflow::Sequel
33
+
34
+ # ...
35
+ end
36
+ ```
37
+
38
+ ## Contributing
39
+
40
+ 1. Fork it (<https://github.com/tmaier/workflow-sequel/fork>)
41
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
42
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
43
+ 4. Push to the branch (`git push origin my-new-feature`)
44
+ 5. Create a new Pull Request
45
+
46
+ ## Acknowledgements
47
+
48
+ Created by [Tobias L. Maier][tmaier] for [maier.io UG (haftungsbeschränkt)][maier-io] and [BauCloud GmbH][baucloud].
49
+
50
+ [Sequel]: http://sequel.jeremyevans.net/ "Ruby ORM alternative to ActiveRecord"
51
+ [workflow]: https://github.com/geekq/workflow "Ruby State Machine"
52
+ [tmaier]: http://tobiasmaier.info/ "Tobias L. Maier"
53
+ [maier-io]: http://www.maier.io/ "maier.io UG"
54
+ [baucloud]: http://www.baucloud.com/ "BauCloud GmbH"
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -0,0 +1,25 @@
1
+ module Workflow
2
+ module Adapter
3
+ module Sequel
4
+ def self.included(klass)
5
+ klass.send :include, InstanceMethods
6
+ end
7
+
8
+ module InstanceMethods
9
+ def load_workflow_state
10
+ send(self.class.workflow_column)
11
+ end
12
+
13
+ def persist_workflow_state(new_value)
14
+ send("#{self.class.workflow_column}=", new_value)
15
+ save(changed: true, columns: [self.class.workflow_column], validate: false)
16
+ end
17
+
18
+ def before_validation
19
+ send("#{self.class.workflow_column}=", current_state.to_s) unless send(self.class.workflow_column)
20
+ super
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,5 @@
1
+ module Workflow
2
+ module Sequel
3
+ VERSION = '0.0.1'
4
+ end
5
+ end
@@ -0,0 +1,12 @@
1
+ require 'workflow/sequel/version'
2
+ require 'workflow/adapter/sequel'
3
+
4
+ module Workflow
5
+ module Sequel
6
+ def self.included(klass)
7
+ return unless Object.const_defined?('Sequel') && klass < Sequel::Model
8
+
9
+ klass.send :include, Adapter::Sequel
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'workflow/sequel/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'workflow-sequel'
8
+ spec.version = Workflow::Sequel::VERSION
9
+ spec.authors = ['Tobias L. Maier']
10
+ spec.email = ['tobias.maier@baucloud.com']
11
+ spec.summary = 'Adds support for the Sequel ORM to the workflow gem'
12
+ spec.homepage = 'https://github.com/tmaier/workflow-sequel'
13
+ spec.license = 'MIT'
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ['lib']
19
+
20
+ spec.add_runtime_dependency 'workflow', '~> 1.1.0'
21
+ spec.add_runtime_dependency 'sequel', '~> 4.13'
22
+
23
+ spec.add_development_dependency 'bundler', '~> 1.6'
24
+ spec.add_development_dependency 'rake'
25
+
26
+ spec.required_ruby_version = '>= 1.9.2'
27
+ end
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: workflow-sequel
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Tobias L. Maier
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-08-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: workflow
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 1.1.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 1.1.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: sequel
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '4.13'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '4.13'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.6'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.6'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
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
+ description:
70
+ email:
71
+ - tobias.maier@baucloud.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - CHANGELOG.md
78
+ - Gemfile
79
+ - LICENSE.md
80
+ - README.md
81
+ - Rakefile
82
+ - lib/workflow/adapter/sequel.rb
83
+ - lib/workflow/sequel.rb
84
+ - lib/workflow/sequel/version.rb
85
+ - workflow-sequel.gemspec
86
+ homepage: https://github.com/tmaier/workflow-sequel
87
+ licenses:
88
+ - MIT
89
+ metadata: {}
90
+ post_install_message:
91
+ rdoc_options: []
92
+ require_paths:
93
+ - lib
94
+ required_ruby_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: 1.9.2
99
+ required_rubygems_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 2.2.2
107
+ signing_key:
108
+ specification_version: 4
109
+ summary: Adds support for the Sequel ORM to the workflow gem
110
+ test_files: []