aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generated_attribute.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-07-03 12:32:46 +0200
committerJosé Valim <jose.valim@gmail.com>2009-07-03 14:57:46 +0200
commit3ca504c966b8cf3ad51cdccd3377efc33fccab33 (patch)
tree7a0c363e18480c3e29ab72e1ffb53e9d6734908a /railties/lib/rails_generator/generated_attribute.rb
parentde68cf7e0624e7d8e7e94034858a061ca0f6f68c (diff)
downloadrails-3ca504c966b8cf3ad51cdccd3377efc33fccab33.tar.gz
rails-3ca504c966b8cf3ad51cdccd3377efc33fccab33.tar.bz2
rails-3ca504c966b8cf3ad51cdccd3377efc33fccab33.zip
Removed remaining old generators files.
Diffstat (limited to 'railties/lib/rails_generator/generated_attribute.rb')
-rw-r--r--railties/lib/rails_generator/generated_attribute.rb46
1 files changed, 0 insertions, 46 deletions
diff --git a/railties/lib/rails_generator/generated_attribute.rb b/railties/lib/rails_generator/generated_attribute.rb
deleted file mode 100644
index a3d4a01142..0000000000
--- a/railties/lib/rails_generator/generated_attribute.rb
+++ /dev/null
@@ -1,46 +0,0 @@
-require 'optparse'
-
-module Rails
- module Generator
- class GeneratedAttribute
- attr_accessor :name, :type, :column
-
- def initialize(name, type)
- @name, @type = name, type.to_sym
- @column = ActiveRecord::ConnectionAdapters::Column.new(name, nil, @type)
- end
-
- def field_type
- @field_type ||= case type
- when :integer, :float, :decimal then :text_field
- when :datetime, :timestamp, :time then :datetime_select
- when :date then :date_select
- when :string then :text_field
- when :text then :text_area
- when :boolean then :check_box
- else
- :text_field
- end
- end
-
- def default
- @default ||= case type
- when :integer then 1
- when :float then 1.5
- when :decimal then "9.99"
- when :datetime, :timestamp, :time then Time.now.to_s(:db)
- when :date then Date.today.to_s(:db)
- when :string then "MyString"
- when :text then "MyText"
- when :boolean then false
- else
- ""
- end
- end
-
- def reference?
- [ :references, :belongs_to ].include?(self.type)
- end
- end
- end
-end