amoeba 0.0.1 → 0.0.2
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/amoeba.gemspec +1 -1
- data/lib/amoeba/version.rb +1 -1
- metadata +15 -11
data/amoeba.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.homepage = "http://github.com/rocksolidwebdesign/amoeba"
|
|
11
11
|
s.license = "BSD"
|
|
12
12
|
s.summary = %q{Easy copying of rails models and their child associations.}
|
|
13
|
-
s.description = %q{An extension to ActiveRecord to allow the duplication method to also copy associated children, with recursive support for nested of grandchildren. The behavior is controllable with a simple DSL both on your rails models and on the fly, i.e. per instance. Numerous configuration options and styles and preprocessing directives are included for power and flexibility.}
|
|
13
|
+
s.description = %q{An extension to ActiveRecord to allow the duplication method to also copy associated children, with recursive support for nested of grandchildren. The behavior is controllable with a simple DSL both on your rails models and on the fly, i.e. per instance. Numerous configuration options and styles and preprocessing directives are included for power and flexibility. Tags: copy child associations, copy nested children, copy associated child records, deep_copy, nested copy, copy associations, copy relations, copy relationships, has_one, has_many, has_and_belongs_to_many, duplicate associations, duplicate associated records, duplicate child records, duplicate children, copy all, duplicate all.}
|
|
14
14
|
|
|
15
15
|
s.rubyforge_project = "amoeba"
|
|
16
16
|
|
data/lib/amoeba/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: amoeba
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,7 @@ date: 2012-02-28 00:00:00.000000000 Z
|
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &14811680 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,10 +21,10 @@ dependencies:
|
|
|
21
21
|
version: 1.0.0
|
|
22
22
|
type: :development
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *14811680
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: rspec
|
|
27
|
-
requirement: &
|
|
27
|
+
requirement: &14811140 !ruby/object:Gem::Requirement
|
|
28
28
|
none: false
|
|
29
29
|
requirements:
|
|
30
30
|
- - ~>
|
|
@@ -32,10 +32,10 @@ dependencies:
|
|
|
32
32
|
version: '2.3'
|
|
33
33
|
type: :development
|
|
34
34
|
prerelease: false
|
|
35
|
-
version_requirements: *
|
|
35
|
+
version_requirements: *14811140
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
37
37
|
name: sqlite3-ruby
|
|
38
|
-
requirement: &
|
|
38
|
+
requirement: &14810740 !ruby/object:Gem::Requirement
|
|
39
39
|
none: false
|
|
40
40
|
requirements:
|
|
41
41
|
- - ! '>='
|
|
@@ -43,10 +43,10 @@ dependencies:
|
|
|
43
43
|
version: '0'
|
|
44
44
|
type: :development
|
|
45
45
|
prerelease: false
|
|
46
|
-
version_requirements: *
|
|
46
|
+
version_requirements: *14810740
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: activerecord
|
|
49
|
-
requirement: &
|
|
49
|
+
requirement: &14810080 !ruby/object:Gem::Requirement
|
|
50
50
|
none: false
|
|
51
51
|
requirements:
|
|
52
52
|
- - ! '>='
|
|
@@ -54,12 +54,16 @@ dependencies:
|
|
|
54
54
|
version: '3.0'
|
|
55
55
|
type: :runtime
|
|
56
56
|
prerelease: false
|
|
57
|
-
version_requirements: *
|
|
58
|
-
description: An extension to ActiveRecord to allow the duplication method to also
|
|
57
|
+
version_requirements: *14810080
|
|
58
|
+
description: ! 'An extension to ActiveRecord to allow the duplication method to also
|
|
59
59
|
copy associated children, with recursive support for nested of grandchildren. The
|
|
60
60
|
behavior is controllable with a simple DSL both on your rails models and on the
|
|
61
61
|
fly, i.e. per instance. Numerous configuration options and styles and preprocessing
|
|
62
|
-
directives are included for power and flexibility.
|
|
62
|
+
directives are included for power and flexibility. Tags: copy child associations,
|
|
63
|
+
copy nested children, copy associated child records, deep_copy, nested copy, copy
|
|
64
|
+
associations, copy relations, copy relationships, has_one, has_many, has_and_belongs_to_many,
|
|
65
|
+
duplicate associations, duplicate associated records, duplicate child records, duplicate
|
|
66
|
+
children, copy all, duplicate all.'
|
|
63
67
|
email: vaughn@rocksolidwebdesign.com
|
|
64
68
|
executables: []
|
|
65
69
|
extensions: []
|