schema_comments 0.1.1 → 0.1.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 → README.rdoc} +5 -1
- data/VERSION +1 -1
- data/tasks/schema_comments.rake +1 -1
- metadata +4 -4
data/{README → README.rdoc}
RENAMED
@@ -8,7 +8,7 @@ SchemaComments
|
|
8
8
|
|
9
9
|
=== as a gem
|
10
10
|
insert following line to config/environment.rb
|
11
|
-
config.gem 'schema_comments', :version => '0.1.
|
11
|
+
config.gem 'schema_comments', :version => '0.1.1'
|
12
12
|
and
|
13
13
|
$ sudo rake gems:install
|
14
14
|
|
@@ -18,6 +18,10 @@ Or install gem manually
|
|
18
18
|
$ sudo gem tumble
|
19
19
|
$ sudo gem install schema_comments
|
20
20
|
|
21
|
+
And make lib/tasks/schema_comments.rake
|
22
|
+
require 'schema_comments/task'
|
23
|
+
|
24
|
+
|
21
25
|
== Configuration
|
22
26
|
If you install schema_comments as a gem, must create config/initializers/schema_comments.rb like this:
|
23
27
|
require 'schema_comments'
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/tasks/schema_comments.rake
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: schema_comments
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- akimatter
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2010-01-14 00:00:00 +09:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -30,11 +30,11 @@ extensions: []
|
|
30
30
|
|
31
31
|
extra_rdoc_files:
|
32
32
|
- LICENSE.txt
|
33
|
-
- README
|
33
|
+
- README.rdoc
|
34
34
|
files:
|
35
35
|
- .gitignore
|
36
36
|
- LICENSE.txt
|
37
|
-
- README
|
37
|
+
- README.rdoc
|
38
38
|
- Rakefile
|
39
39
|
- VERSION
|
40
40
|
- autotest/discover.rb
|