advancement 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/README.md +1 -1
- data/Rakefile +11 -0
- data/advancement.gemspec +6 -2
- data/lib/advancement/test_case.rb +4 -0
- data/lib/advancement/version.rb +1 -1
- data/test/advancement/test_case_test.rb +9 -0
- data/test/advancement_test.rb +8 -0
- data/test/test_helper.rb +3 -0
- metadata +32 -10
- data/lib/legacy.rb +0 -5
- data/lib/legacy/version.rb +0 -3
data/README.md
CHANGED
data/Rakefile
CHANGED
data/advancement.gemspec
CHANGED
@@ -4,8 +4,8 @@ require File.expand_path('../lib/advancement/version', __FILE__)
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Eloy Espinaco"]
|
6
6
|
gem.email = ["eloyesp@gmail.com"]
|
7
|
-
gem.description = %q{Progressive application retirement with TDD}
|
8
|
-
gem.summary = %q{Advancement will help you write migrations and tests with your legacy data. Then you can retire legacy applications making possible continius integration in a phased rollout model.}
|
7
|
+
gem.description = %q{[currently in development] Progressive application retirement with TDD}
|
8
|
+
gem.summary = %q{[currently in development] Advancement will help you write migrations and tests with your legacy data. Then you can retire legacy applications making possible continius integration in a phased rollout model.}
|
9
9
|
gem.homepage = ""
|
10
10
|
|
11
11
|
gem.files = `git ls-files`.split($\)
|
@@ -14,5 +14,9 @@ Gem::Specification.new do |gem|
|
|
14
14
|
gem.name = "advancement"
|
15
15
|
gem.require_paths = ["lib"]
|
16
16
|
gem.version = Advancement::VERSION
|
17
|
+
|
18
|
+
# gem.add_dependency "rails", "~> 3.2.2"
|
19
|
+
|
20
|
+
gem.add_development_dependency "minitest"
|
17
21
|
end
|
18
22
|
|
data/lib/advancement/version.rb
CHANGED
data/test/test_helper.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: advancement
|
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:
|
@@ -9,9 +9,26 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-11-
|
13
|
-
dependencies:
|
14
|
-
|
12
|
+
date: 2012-11-06 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: minitest
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
description: ! '[currently in development] Progressive application retirement with
|
31
|
+
TDD'
|
15
32
|
email:
|
16
33
|
- eloyesp@gmail.com
|
17
34
|
executables: []
|
@@ -25,9 +42,11 @@ files:
|
|
25
42
|
- Rakefile
|
26
43
|
- advancement.gemspec
|
27
44
|
- lib/advancement.rb
|
45
|
+
- lib/advancement/test_case.rb
|
28
46
|
- lib/advancement/version.rb
|
29
|
-
-
|
30
|
-
-
|
47
|
+
- test/advancement/test_case_test.rb
|
48
|
+
- test/advancement_test.rb
|
49
|
+
- test/test_helper.rb
|
31
50
|
homepage: ''
|
32
51
|
licenses: []
|
33
52
|
post_install_message:
|
@@ -51,8 +70,11 @@ rubyforge_project:
|
|
51
70
|
rubygems_version: 1.8.24
|
52
71
|
signing_key:
|
53
72
|
specification_version: 3
|
54
|
-
summary: Advancement will help you write migrations
|
55
|
-
Then you can retire legacy applications making
|
56
|
-
a phased rollout model.
|
57
|
-
test_files:
|
73
|
+
summary: ! '[currently in development] Advancement will help you write migrations
|
74
|
+
and tests with your legacy data. Then you can retire legacy applications making
|
75
|
+
possible continius integration in a phased rollout model.'
|
76
|
+
test_files:
|
77
|
+
- test/advancement/test_case_test.rb
|
78
|
+
- test/advancement_test.rb
|
79
|
+
- test/test_helper.rb
|
58
80
|
has_rdoc:
|
data/lib/legacy.rb
DELETED
data/lib/legacy/version.rb
DELETED