purgatory 1.0.0 → 1.1.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.
- checksums.yaml +8 -8
- data/README.markdown +1 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/purgatory.gemspec +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YjBmNmUyZGQ4NDBjYmI5OWQyNTg1ZmIzNjZkYzdlOWFjZWU2OTNjZg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZjQ4NDFlZTk3N2Y4NDY2ZjYwMjI0ZTM0YTM0MTcyNWM1Y2Y4ZWVlMg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MDMzNGY5MGZiODc2N2JmZjNiYmNmMGJlZjBhMDlmZmEzYzRlM2FjNjc2YWZj
|
10
|
+
NDM2MmM5OTZkZmZlYjMxMDllNTU4NDQ5ZjM5MmEwMTY2NTBiYTFhZTk2Y2Q4
|
11
|
+
NjliMDQ4NjE0ZjQ0NmE2ZDgzNWFkMzdjNmQ3ZTQ0MmYzYWI1OTA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NTFkMGQ5MDczMWU4NTNjOTFkOWU4ZmM0ZDgyZjI3YjQ0ZmE2ZTY5MGJkYWZh
|
14
|
+
Y2I1OWI2NTVmMGMzMzliN2Y1OTUxM2RhZTliODJhNTBkNjM4ZGZiZTY4ZjUy
|
15
|
+
ODg5ZDNkNzM4YTViMzEwNGYzZDg1YTcwMmRjZmU5ZDQwNzY2ZjA=
|
data/README.markdown
CHANGED
@@ -27,7 +27,7 @@ To apply the changes, simply call the approve! method on the associated Pergator
|
|
27
27
|
purgatory = item.purgatories.last
|
28
28
|
purgatory.approve!(current_user)
|
29
29
|
|
30
|
-
The following are
|
30
|
+
The following are some attributes of a purgatory:
|
31
31
|
|
32
32
|
purgatory.soul # The ActiveRecord model instance whose changes are in purgatory
|
33
33
|
purgatory.requester # The user who created the purgatory
|
data/Rakefile
CHANGED
@@ -15,7 +15,7 @@ require 'jeweler'
|
|
15
15
|
Jeweler::Tasks.new do |gem|
|
16
16
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
17
17
|
gem.name = "purgatory"
|
18
|
-
gem.homepage = "http://github.com/
|
18
|
+
gem.homepage = "http://github.com/financeit/purgatory"
|
19
19
|
gem.license = "MIT"
|
20
20
|
gem.summary = %Q{Allow changes to a model to be put in purgatory until they are approved}
|
21
21
|
gem.description = %Q{Put your model changes in purgatory and allow them to remain lost souls until they are approved}
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.1.0
|
data/purgatory.gemspec
CHANGED
@@ -2,15 +2,15 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: purgatory 1.
|
5
|
+
# stub: purgatory 1.1.0 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "purgatory"
|
9
|
-
s.version = "1.
|
9
|
+
s.version = "1.1.0"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.authors = ["Elan Dubrofsky"]
|
13
|
-
s.date = "2013-11-
|
13
|
+
s.date = "2013-11-22"
|
14
14
|
s.description = "Put your model changes in purgatory and allow them to remain lost souls until they are approved"
|
15
15
|
s.email = "elan.dubrofsky@gmail.com"
|
16
16
|
s.extra_rdoc_files = [
|
@@ -35,7 +35,7 @@ Gem::Specification.new do |s|
|
|
35
35
|
"test/helper.rb",
|
36
36
|
"test/test_purgatory.rb"
|
37
37
|
]
|
38
|
-
s.homepage = "http://github.com/
|
38
|
+
s.homepage = "http://github.com/financeit/purgatory"
|
39
39
|
s.licenses = ["MIT"]
|
40
40
|
s.require_paths = ["lib"]
|
41
41
|
s.rubygems_version = "2.1.10"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: purgatory
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elan Dubrofsky
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-11-
|
11
|
+
date: 2013-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: shoulda
|
@@ -91,7 +91,7 @@ files:
|
|
91
91
|
- purgatory.gemspec
|
92
92
|
- test/helper.rb
|
93
93
|
- test/test_purgatory.rb
|
94
|
-
homepage: http://github.com/
|
94
|
+
homepage: http://github.com/financeit/purgatory
|
95
95
|
licenses:
|
96
96
|
- MIT
|
97
97
|
metadata: {}
|