diffrent 0.1.0 → 0.2.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/Rakefile +7 -2
- data/VERSION +1 -1
- data/diffrent.gemspec +3 -3
- metadata +20 -16
data/Rakefile
CHANGED
|
@@ -17,8 +17,13 @@ Jeweler::Tasks.new do |gem|
|
|
|
17
17
|
gem.name = "diffrent"
|
|
18
18
|
gem.homepage = "http://github.com/futurechimp/diffrent"
|
|
19
19
|
gem.license = "MIT"
|
|
20
|
-
gem.summary = %Q{Simple}
|
|
21
|
-
gem.description = %Q{
|
|
20
|
+
gem.summary = %Q{Simple ActiveRecord version diffing}
|
|
21
|
+
gem.description = %Q{Diffrent is a very simple way to do ActiveRecord version diffing. It provides
|
|
22
|
+
a convenient interface to two other libraries
|
|
23
|
+
([Diffy](https://github.com/samg/diffy) and [Vestal Versions](https://github.com/laserlemon/vestal_versions)), combining their functionality.
|
|
24
|
+
|
|
25
|
+
It makes no assumption about what web framework you're using - it can be used in
|
|
26
|
+
Sinatra, Padrino, Rails, or with no framework at all. }
|
|
22
27
|
gem.email = "dave.hrycyszyn@headlondon.com"
|
|
23
28
|
gem.authors = ["Dave Hrycyszyn"]
|
|
24
29
|
# dependencies defined in Gemfile
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.2.0
|
data/diffrent.gemspec
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "diffrent"
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.2.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Dave Hrycyszyn"]
|
|
12
12
|
s.date = "2012-04-18"
|
|
13
|
-
s.description = "
|
|
13
|
+
s.description = "Diffrent is a very simple way to do ActiveRecord version diffing. It provides\na convenient interface to two other libraries \n([Diffy](https://github.com/samg/diffy) and [Vestal Versions](https://github.com/laserlemon/vestal_versions)), combining their functionality. \n\nIt makes no assumption about what web framework you're using - it can be used in\nSinatra, Padrino, Rails, or with no framework at all. "
|
|
14
14
|
s.email = "dave.hrycyszyn@headlondon.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"LICENSE.txt",
|
|
@@ -33,7 +33,7 @@ Gem::Specification.new do |s|
|
|
|
33
33
|
s.licenses = ["MIT"]
|
|
34
34
|
s.require_paths = ["lib"]
|
|
35
35
|
s.rubygems_version = "1.8.17"
|
|
36
|
-
s.summary = "Simple"
|
|
36
|
+
s.summary = "Simple ActiveRecord version diffing"
|
|
37
37
|
|
|
38
38
|
if s.respond_to? :specification_version then
|
|
39
39
|
s.specification_version = 3
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: diffrent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,7 @@ date: 2012-04-18 00:00:00.000000000Z
|
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: diffy
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &2154626640 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,10 +21,10 @@ dependencies:
|
|
|
21
21
|
version: '0'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *2154626640
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: vestal_versions
|
|
27
|
-
requirement: &
|
|
27
|
+
requirement: &2154626020 !ruby/object:Gem::Requirement
|
|
28
28
|
none: false
|
|
29
29
|
requirements:
|
|
30
30
|
- - ! '>='
|
|
@@ -32,10 +32,10 @@ dependencies:
|
|
|
32
32
|
version: '0'
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
|
-
version_requirements: *
|
|
35
|
+
version_requirements: *2154626020
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
37
37
|
name: minitest
|
|
38
|
-
requirement: &
|
|
38
|
+
requirement: &2154625540 !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: *2154625540
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: bundler
|
|
49
|
-
requirement: &
|
|
49
|
+
requirement: &2154625060 !ruby/object:Gem::Requirement
|
|
50
50
|
none: false
|
|
51
51
|
requirements:
|
|
52
52
|
- - ~>
|
|
@@ -54,10 +54,10 @@ dependencies:
|
|
|
54
54
|
version: 1.0.0
|
|
55
55
|
type: :development
|
|
56
56
|
prerelease: false
|
|
57
|
-
version_requirements: *
|
|
57
|
+
version_requirements: *2154625060
|
|
58
58
|
- !ruby/object:Gem::Dependency
|
|
59
59
|
name: jeweler
|
|
60
|
-
requirement: &
|
|
60
|
+
requirement: &2154624540 !ruby/object:Gem::Requirement
|
|
61
61
|
none: false
|
|
62
62
|
requirements:
|
|
63
63
|
- - ~>
|
|
@@ -65,10 +65,10 @@ dependencies:
|
|
|
65
65
|
version: 1.6.4
|
|
66
66
|
type: :development
|
|
67
67
|
prerelease: false
|
|
68
|
-
version_requirements: *
|
|
68
|
+
version_requirements: *2154624540
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: simplecov
|
|
71
|
-
requirement: &
|
|
71
|
+
requirement: &2154624060 !ruby/object:Gem::Requirement
|
|
72
72
|
none: false
|
|
73
73
|
requirements:
|
|
74
74
|
- - ! '>='
|
|
@@ -76,8 +76,12 @@ dependencies:
|
|
|
76
76
|
version: '0'
|
|
77
77
|
type: :development
|
|
78
78
|
prerelease: false
|
|
79
|
-
version_requirements: *
|
|
80
|
-
description:
|
|
79
|
+
version_requirements: *2154624060
|
|
80
|
+
description: ! "Diffrent is a very simple way to do ActiveRecord version diffing.
|
|
81
|
+
It provides\na convenient interface to two other libraries \n([Diffy](https://github.com/samg/diffy)
|
|
82
|
+
and [Vestal Versions](https://github.com/laserlemon/vestal_versions)), combining
|
|
83
|
+
their functionality. \n\nIt makes no assumption about what web framework you're
|
|
84
|
+
using - it can be used in\nSinatra, Padrino, Rails, or with no framework at all. "
|
|
81
85
|
email: dave.hrycyszyn@headlondon.com
|
|
82
86
|
executables: []
|
|
83
87
|
extensions: []
|
|
@@ -111,7 +115,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
111
115
|
version: '0'
|
|
112
116
|
segments:
|
|
113
117
|
- 0
|
|
114
|
-
hash: -
|
|
118
|
+
hash: -113918672125213671
|
|
115
119
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
120
|
none: false
|
|
117
121
|
requirements:
|
|
@@ -123,5 +127,5 @@ rubyforge_project:
|
|
|
123
127
|
rubygems_version: 1.8.17
|
|
124
128
|
signing_key:
|
|
125
129
|
specification_version: 3
|
|
126
|
-
summary: Simple
|
|
130
|
+
summary: Simple ActiveRecord version diffing
|
|
127
131
|
test_files: []
|