has-versions 0.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.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/lib/has-versions.rb +123 -0
- data/test/helper.rb +10 -0
- data/test/test_has-versions.rb +7 -0
- metadata +90 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2009 Sander Onland
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
= has-versions
|
|
2
|
+
|
|
3
|
+
Description goes here.
|
|
4
|
+
|
|
5
|
+
== Note on Patches/Pull Requests
|
|
6
|
+
|
|
7
|
+
* Fork the project.
|
|
8
|
+
* Make your feature addition or bug fix.
|
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
|
10
|
+
future version unintentionally.
|
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
|
12
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
|
13
|
+
* Send me a pull request. Bonus points for topic branches.
|
|
14
|
+
|
|
15
|
+
== Copyright
|
|
16
|
+
|
|
17
|
+
Copyright (c) 2010 Sander Onland. See LICENSE for details.
|
data/Rakefile
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
require 'rubygems'
|
|
2
|
+
require 'rake'
|
|
3
|
+
|
|
4
|
+
begin
|
|
5
|
+
require 'jeweler'
|
|
6
|
+
Jeweler::Tasks.new do |gem|
|
|
7
|
+
gem.name = "has-versions"
|
|
8
|
+
gem.summary = "Adds versioning to existing active-record models"
|
|
9
|
+
gem.description = ""
|
|
10
|
+
gem.email = "onland@alias.nl"
|
|
11
|
+
gem.homepage = "http://github.com/onland/has-versions"
|
|
12
|
+
gem.authors = ["Sander Onland"]
|
|
13
|
+
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
15
|
+
end
|
|
16
|
+
Jeweler::GemcutterTasks.new
|
|
17
|
+
rescue LoadError
|
|
18
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
require 'rake/testtask'
|
|
22
|
+
Rake::TestTask.new(:test) do |test|
|
|
23
|
+
test.libs << 'lib' << 'test'
|
|
24
|
+
test.pattern = 'test/**/test_*.rb'
|
|
25
|
+
test.verbose = true
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
begin
|
|
29
|
+
require 'rcov/rcovtask'
|
|
30
|
+
Rcov::RcovTask.new do |test|
|
|
31
|
+
test.libs << 'test'
|
|
32
|
+
test.pattern = 'test/**/test_*.rb'
|
|
33
|
+
test.verbose = true
|
|
34
|
+
end
|
|
35
|
+
rescue LoadError
|
|
36
|
+
task :rcov do
|
|
37
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
task :test => :check_dependencies
|
|
42
|
+
|
|
43
|
+
task :default => :test
|
|
44
|
+
|
|
45
|
+
require 'rake/rdoctask'
|
|
46
|
+
Rake::RDocTask.new do |rdoc|
|
|
47
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
|
48
|
+
|
|
49
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
50
|
+
rdoc.title = "has-versions #{version}"
|
|
51
|
+
rdoc.rdoc_files.include('README*')
|
|
52
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
53
|
+
end
|
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.0.0
|
data/lib/has-versions.rb
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
def has_versions
|
|
2
|
+
extend VersionExtensions
|
|
3
|
+
include VersionIncludes
|
|
4
|
+
end
|
|
5
|
+
|
|
6
|
+
module VersionExtensions
|
|
7
|
+
|
|
8
|
+
def snapshot( version )
|
|
9
|
+
content_with_right_version = []
|
|
10
|
+
content_present_in_this_version = self.where("version <= '#{version}'").group(:uid)
|
|
11
|
+
content_present_in_this_version.each do |c|
|
|
12
|
+
content_with_right_version << self.where(:uid =>c.uid).where("version <= '#{version}'").order('version DESC').first
|
|
13
|
+
end
|
|
14
|
+
return content_with_right_version
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def commitable
|
|
18
|
+
draft.where("created_at!=updated_at")
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
module VersionIncludes
|
|
24
|
+
def self.included(base)
|
|
25
|
+
base.class_eval do
|
|
26
|
+
|
|
27
|
+
# has_many :histories, :class_name => self.name, :primary_key => :uid, :foreign_key => :uid, :conditions => {:state => 'history' }
|
|
28
|
+
|
|
29
|
+
# has_one :draft, :class_name => self.name, :primary_key => :uid, :foreign_key => :uid, :conditions => {:state => 'draft' }
|
|
30
|
+
|
|
31
|
+
# has_one :publication, :class_name => self.name, :primary_key => :uid, :foreign_key => :uid, :conditions => {:state => 'publication' }
|
|
32
|
+
|
|
33
|
+
scope :uid, lambda {|uid| where(:uid =>uid) }
|
|
34
|
+
scope :publication, where(:state=>'publication')
|
|
35
|
+
scope :draft, where(:state=>'draft')
|
|
36
|
+
scope :with_version, lambda {|version| self.where("version <= '#{version}'") }
|
|
37
|
+
|
|
38
|
+
before_create 'before_create_initialization'
|
|
39
|
+
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def histories
|
|
44
|
+
self.class.where(:uid=>uid).where(:state=>'history').all
|
|
45
|
+
end
|
|
46
|
+
def draft
|
|
47
|
+
self.class.where(:uid=>uid).where(:state=>'draft').all.first
|
|
48
|
+
end
|
|
49
|
+
def publication
|
|
50
|
+
self.class.where(:uid=>uid).where(:state=>'publication').all.first
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def before_create_initialization
|
|
56
|
+
self.state = 'draft'
|
|
57
|
+
self.version = nil
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
def draft!
|
|
61
|
+
self.state = 'draft'
|
|
62
|
+
self.version = nil
|
|
63
|
+
self.save
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
def publish!(version)
|
|
67
|
+
if draft?
|
|
68
|
+
return nil if publication && publication.version >= version
|
|
69
|
+
publication.historize! if publication
|
|
70
|
+
self.state = 'publication'
|
|
71
|
+
self.version = version
|
|
72
|
+
self.save
|
|
73
|
+
create_draft!
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
def revert!
|
|
78
|
+
if draft? && publication
|
|
79
|
+
draft = publication.create_draft!
|
|
80
|
+
self.destroy
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
def restore!
|
|
85
|
+
if history?
|
|
86
|
+
draft.destroy if draft
|
|
87
|
+
create_draft!
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
def historize!
|
|
94
|
+
if publication?
|
|
95
|
+
self.state = 'history'
|
|
96
|
+
self.save
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
def create_draft!
|
|
101
|
+
draft = self.clone
|
|
102
|
+
draft.state = 'draft'
|
|
103
|
+
draft.created_at = Time.now
|
|
104
|
+
draft.updated_at = Time.now
|
|
105
|
+
draft.save
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
def draft?
|
|
109
|
+
state.eql?('draft')
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
def publication?
|
|
113
|
+
state.eql?('publication')
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
def history?
|
|
117
|
+
state.eql?('history')
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
def commitable?
|
|
121
|
+
draft? && (self.created_at!=self.updated_at)
|
|
122
|
+
end
|
|
123
|
+
end
|
data/test/helper.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: has-versions
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 31
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
- 0
|
|
10
|
+
version: 0.0.0
|
|
11
|
+
platform: ruby
|
|
12
|
+
authors:
|
|
13
|
+
- Sander Onland
|
|
14
|
+
autorequire:
|
|
15
|
+
bindir: bin
|
|
16
|
+
cert_chain: []
|
|
17
|
+
|
|
18
|
+
date: 2010-08-01 00:00:00 +02:00
|
|
19
|
+
default_executable:
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: thoughtbot-shoulda
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
30
|
+
segments:
|
|
31
|
+
- 0
|
|
32
|
+
version: "0"
|
|
33
|
+
type: :development
|
|
34
|
+
version_requirements: *id001
|
|
35
|
+
description: ""
|
|
36
|
+
email: onland@alias.nl
|
|
37
|
+
executables: []
|
|
38
|
+
|
|
39
|
+
extensions: []
|
|
40
|
+
|
|
41
|
+
extra_rdoc_files:
|
|
42
|
+
- LICENSE
|
|
43
|
+
- README.rdoc
|
|
44
|
+
files:
|
|
45
|
+
- .document
|
|
46
|
+
- .gitignore
|
|
47
|
+
- LICENSE
|
|
48
|
+
- README.rdoc
|
|
49
|
+
- Rakefile
|
|
50
|
+
- VERSION
|
|
51
|
+
- lib/has-versions.rb
|
|
52
|
+
- test/helper.rb
|
|
53
|
+
- test/test_has-versions.rb
|
|
54
|
+
has_rdoc: true
|
|
55
|
+
homepage: http://github.com/onland/has-versions
|
|
56
|
+
licenses: []
|
|
57
|
+
|
|
58
|
+
post_install_message:
|
|
59
|
+
rdoc_options:
|
|
60
|
+
- --charset=UTF-8
|
|
61
|
+
require_paths:
|
|
62
|
+
- lib
|
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
64
|
+
none: false
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
hash: 3
|
|
69
|
+
segments:
|
|
70
|
+
- 0
|
|
71
|
+
version: "0"
|
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
|
+
none: false
|
|
74
|
+
requirements:
|
|
75
|
+
- - ">="
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
hash: 3
|
|
78
|
+
segments:
|
|
79
|
+
- 0
|
|
80
|
+
version: "0"
|
|
81
|
+
requirements: []
|
|
82
|
+
|
|
83
|
+
rubyforge_project:
|
|
84
|
+
rubygems_version: 1.3.7
|
|
85
|
+
signing_key:
|
|
86
|
+
specification_version: 3
|
|
87
|
+
summary: Adds versioning to existing active-record models
|
|
88
|
+
test_files:
|
|
89
|
+
- test/helper.rb
|
|
90
|
+
- test/test_has-versions.rb
|