db_acts_as_versioned 3.4.0 → 3.4.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 +4 -4
- data/.document +5 -0
- data/.gitignore +2 -15
- data/.rvmrc +1 -0
- data/Gemfile.lock +17 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/lib/db_acts_as_versioned/version.rb +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70db618c74e384e96cbcbe8423f5da33067e8fc2
|
4
|
+
data.tar.gz: 8a91d270fe8cf926ca7a62e9d55c639752986847
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 243e91ff837ebc98fae3a5e15de956eb089c3ac24ca33c4f2938476898dc0529514f23f81f7973d3b3aa99767ec6846a2cad3445ada91b8e440661038e915bbe
|
7
|
+
data.tar.gz: 311762027c6211b5ff8ee10d63a860e79a5ceeca06442039fc55d5e9b2cfa102e764f7ac19de7e50f09e90d55e64860d5c05cd8b4e35650979500d38ab1911ba
|
data/.document
ADDED
data/.gitignore
CHANGED
data/.rvmrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rvm --create use 1.9.2@acts_as_versioned
|
data/Gemfile.lock
ADDED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -8,7 +8,7 @@ acts_as_versioned is a gem for Rails 3.1, 3.2 & 4 to enable easy versioning of m
|
|
8
8
|
|
9
9
|
In your Gemfile simply include:
|
10
10
|
|
11
|
-
gem 'db_acts_as_versioned', '~> 3.
|
11
|
+
gem 'db_acts_as_versioned', '~> 3.4.1'
|
12
12
|
|
13
13
|
The next time you run `bundle install` you'll be all set to start using acts_as_versioned.
|
14
14
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: db_acts_as_versioned
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
4
|
+
version: 3.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sommer Systems, LLC
|
@@ -46,8 +46,11 @@ executables: []
|
|
46
46
|
extensions: []
|
47
47
|
extra_rdoc_files: []
|
48
48
|
files:
|
49
|
+
- .document
|
49
50
|
- .gitignore
|
51
|
+
- .rvmrc
|
50
52
|
- Gemfile
|
53
|
+
- Gemfile.lock
|
51
54
|
- LICENSE.txt
|
52
55
|
- README.md
|
53
56
|
- Rakefile
|