schema_comments 0.1.0 → 0.1.1

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -0,0 +1 @@
1
+ Dir.glob(File.join(File.dirname(__FILE__), '../../tasks/*.rake')){|f| load(f)}
@@ -0,0 +1,96 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{schema_comments}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["akimatter"]
12
+ s.date = %q{2009-12-13}
13
+ s.description = %q{schema_comments generates extra methods dynamically for attribute which has options}
14
+ s.email = %q{akm2000@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README"
18
+ ]
19
+ s.files = [
20
+ ".gitignore",
21
+ "LICENSE.txt",
22
+ "README",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "autotest/discover.rb",
26
+ "init.rb",
27
+ "lib/annotate_models.rb",
28
+ "lib/schema_comments.rb",
29
+ "lib/schema_comments/base.rb",
30
+ "lib/schema_comments/connection_adapters.rb",
31
+ "lib/schema_comments/migration.rb",
32
+ "lib/schema_comments/migrator.rb",
33
+ "lib/schema_comments/schema.rb",
34
+ "lib/schema_comments/schema_comment.rb",
35
+ "lib/schema_comments/schema_dumper.rb",
36
+ "lib/schema_comments/task.rb",
37
+ "schema_comments.gemspec",
38
+ "spec/.gitignore",
39
+ "spec/annotate_models_spec.rb",
40
+ "spec/database.yml",
41
+ "spec/fixtures/.gitignore",
42
+ "spec/i18n_export_spec.rb",
43
+ "spec/migration_spec.rb",
44
+ "spec/migrations/valid/001_create_products.rb",
45
+ "spec/migrations/valid/002_rename_products.rb",
46
+ "spec/migrations/valid/003_rename_products_again.rb",
47
+ "spec/migrations/valid/004_remove_price.rb",
48
+ "spec/migrations/valid/005_change_products_name.rb",
49
+ "spec/migrations/valid/006_change_products_name_with_comment.rb",
50
+ "spec/resources/models/product.rb",
51
+ "spec/resources/models/product_name.rb",
52
+ "spec/schema.rb",
53
+ "spec/schema_dumper_spec.rb",
54
+ "spec/spec.opts",
55
+ "spec/spec_helper.rb",
56
+ "spec/yaml_export_spec.rb",
57
+ "tasks/annotate_models_tasks.rake",
58
+ "tasks/schema_comments.rake"
59
+ ]
60
+ s.homepage = %q{http://github.com/akm/schema_comments}
61
+ s.rdoc_options = ["--charset=UTF-8"]
62
+ s.require_paths = ["lib"]
63
+ s.rubygems_version = %q{1.3.5}
64
+ s.summary = %q{schema_comments generates extra methods dynamically}
65
+ s.test_files = [
66
+ "spec/annotate_models_spec.rb",
67
+ "spec/i18n_export_spec.rb",
68
+ "spec/migration_spec.rb",
69
+ "spec/migrations/valid/001_create_products.rb",
70
+ "spec/migrations/valid/002_rename_products.rb",
71
+ "spec/migrations/valid/003_rename_products_again.rb",
72
+ "spec/migrations/valid/004_remove_price.rb",
73
+ "spec/migrations/valid/005_change_products_name.rb",
74
+ "spec/migrations/valid/006_change_products_name_with_comment.rb",
75
+ "spec/resources/models/product.rb",
76
+ "spec/resources/models/product_name.rb",
77
+ "spec/schema.rb",
78
+ "spec/schema_dumper_spec.rb",
79
+ "spec/spec_helper.rb",
80
+ "spec/yaml_export_spec.rb"
81
+ ]
82
+
83
+ if s.respond_to? :specification_version then
84
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
85
+ s.specification_version = 3
86
+
87
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
88
+ s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
89
+ else
90
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
91
+ end
92
+ else
93
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
94
+ end
95
+ end
96
+
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.0
4
+ version: 0.1.1
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: 2009-10-29 00:00:00 +09:00
12
+ date: 2009-12-13 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -48,6 +48,8 @@ files:
48
48
  - lib/schema_comments/schema.rb
49
49
  - lib/schema_comments/schema_comment.rb
50
50
  - lib/schema_comments/schema_dumper.rb
51
+ - lib/schema_comments/task.rb
52
+ - schema_comments.gemspec
51
53
  - spec/.gitignore
52
54
  - spec/annotate_models_spec.rb
53
55
  - spec/database.yml