mlins-active_migration 1.0.3 → 1.0.4

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/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ *1.0.4 (November 23, 2008)*
2
+
3
+ * Less strict dependencies
4
+
1
5
  *1.0.3 (November 22, 2008)*
2
6
 
3
7
  * Fixed gemspec problems
data/Rakefile CHANGED
@@ -26,9 +26,9 @@ begin
26
26
  s.homepage = "http://github.com/mlins/active_migration"
27
27
  s.description = "A library to assist with the migration of data from legacy databases."
28
28
  s.authors = ["Matt Lins"]
29
- s.files = FileList["[A-Z]*", "{lib,spec}/**/*"]
30
- s.add_dependency 'activesupport', '>= 2.2.2'
31
- s.add_dependency 'activerecord', '>= 2.2.2'
29
+ s.files = FileList["[A-Z]*", "{lib,spec,tmp}/**/*"]
30
+ s.add_dependency 'activesupport', '>= 2.1.0'
31
+ s.add_dependency 'activerecord', '>= 2.1.0'
32
32
  end
33
33
  rescue LoadError
34
34
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  major: 1
3
- patch: 3
3
+ patch: 4
4
4
  minor: 0
@@ -2,7 +2,7 @@ module ActiveMigration #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 0
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mlins-active_migration
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Lins
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-11-22 00:00:00 -08:00
12
+ date: 2008-11-23 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -19,7 +19,7 @@ dependencies:
19
19
  requirements:
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 2.2.2
22
+ version: 2.1.0
23
23
  version:
24
24
  - !ruby/object:Gem::Dependency
25
25
  name: activerecord
@@ -28,7 +28,7 @@ dependencies:
28
28
  requirements:
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 2.2.2
31
+ version: 2.1.0
32
32
  version:
33
33
  description: A library to assist with the migration of data from legacy databases.
34
34
  email: mattlins@gmail.com