migr8 0.4.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.
@@ -0,0 +1,8 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ here = File.dirname(File.expand_path(__FILE__))
4
+ Dir.glob("#{here}/*_test.rb").each do |fpath|
5
+ require fpath
6
+ end
7
+
8
+
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: migr8
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - makoto kuwata
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-11-28 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: ! 'Migr8.rb is a database schema version management tool.
15
+
16
+ * Easy to install, easy to setup, and easy to start
17
+
18
+ * No configuration file; instead, only two environment variables
19
+
20
+ * Designed carefully to suit Git or Mercurial
21
+
22
+ * Supports SQLite3, PostgreSQL, and MySQL
23
+
24
+ * Written in Ruby (>= 1.8)
25
+
26
+ '
27
+ email: kwa(at)kuwata-lab.com
28
+ executables:
29
+ - migr8.rb
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - lib/migr8.rb
34
+ - bin/migr8.rb
35
+ - test/Application_test.rb
36
+ - test/helpers.rb
37
+ - test/Migration_test.rb
38
+ - test/oktest.rb
39
+ - test/run_all.rb
40
+ - test/Util_test.rb
41
+ - README.md
42
+ - MIT-LICENSE
43
+ - setup.rb
44
+ - migr8.gemspec
45
+ - Rakefile
46
+ homepage: https://github.com/kwatch/migr8/tree/ruby-release
47
+ licenses: []
48
+ post_install_message:
49
+ rdoc_options: []
50
+ require_paths:
51
+ - lib
52
+ required_ruby_version: !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ! '>='
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - ! '>='
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ requirements: []
65
+ rubyforge_project: migr8
66
+ rubygems_version: 1.8.25
67
+ signing_key:
68
+ specification_version: 3
69
+ summary: database schema version management tool
70
+ test_files:
71
+ - test/run_all.rb