rmre 0.0.6 → 0.0.7
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/Gemfile.lock +1 -1
- data/HISTORY.rdoc +43 -37
- data/lib/rmre/version.rb +1 -1
- metadata +2 -2
data/Gemfile.lock
CHANGED
data/HISTORY.rdoc
CHANGED
|
@@ -1,37 +1,43 @@
|
|
|
1
|
-
Rmre is utility gem for creating Ruby on Rails models for legacy databases.
|
|
2
|
-
|
|
3
|
-
Changes:
|
|
4
|
-
|
|
5
|
-
=== 0.0.
|
|
6
|
-
|
|
7
|
-
*
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
*
|
|
17
|
-
|
|
18
|
-
*
|
|
19
|
-
|
|
20
|
-
=== 0.0.
|
|
21
|
-
|
|
22
|
-
* Enhancements
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
*
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
Rmre is utility gem for creating Ruby on Rails models for legacy databases.
|
|
2
|
+
|
|
3
|
+
Changes:
|
|
4
|
+
|
|
5
|
+
=== 0.0.7 / 2013-05-09
|
|
6
|
+
|
|
7
|
+
* Fixes
|
|
8
|
+
|
|
9
|
+
* Fixed type on HISTORY.rdoc file
|
|
10
|
+
|
|
11
|
+
=== 0.0.6 / 2013-05-09
|
|
12
|
+
|
|
13
|
+
* Enhancements
|
|
14
|
+
|
|
15
|
+
* Added support for mysql2 gem with foreign keys ({Daniel Garajau}[https://github.com/kriansa])
|
|
16
|
+
* Added support for non-standard foreign key names in has_many relationship ({Gui Weinmann}[https://github.com/alphabet])
|
|
17
|
+
* Changed readme file to use mysql2 gem in samples ({Ketan Deshmukh}[https://github.com/ketan21])
|
|
18
|
+
* Experimental support for copying databases through db_copy binary or by using Rmre::Migrator class
|
|
19
|
+
|
|
20
|
+
=== 0.0.5 / 2012-11-04
|
|
21
|
+
|
|
22
|
+
* Enhancements
|
|
23
|
+
|
|
24
|
+
* Drop explicit erubis dependency which prevented rmre usage along with newest Rails versions
|
|
25
|
+
|
|
26
|
+
=== 0.0.4 / 2012-06-07
|
|
27
|
+
|
|
28
|
+
* Enhancements
|
|
29
|
+
|
|
30
|
+
* do not use deprecated methods in generated models ({John Murray}[https://github.com/JohnMurray])
|
|
31
|
+
* 'belongs_to' method uses singular name ({John Murray}[https://github.com/JohnMurray])
|
|
32
|
+
|
|
33
|
+
=== 0.0.3 / 2012-02-19
|
|
34
|
+
|
|
35
|
+
* Enhancements
|
|
36
|
+
|
|
37
|
+
* schema dump with foreign key statements
|
|
38
|
+
* creating sample settings file (-f, --file switch)
|
|
39
|
+
* generate singularized model file names
|
|
40
|
+
* various other fixes
|
|
41
|
+
|
|
42
|
+
GitHub: http://github.com/bosko/rmre
|
|
43
|
+
Issues: http://github.com/bosko/rmre/issues
|
data/lib/rmre/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rmre
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -128,7 +128,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
128
128
|
version: '0'
|
|
129
129
|
segments:
|
|
130
130
|
- 0
|
|
131
|
-
hash: -
|
|
131
|
+
hash: -3979610488748515593
|
|
132
132
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
133
133
|
none: false
|
|
134
134
|
requirements:
|