Railsの一部、特にaccessible_attributesの周りを理解しようとしているだけです
以下の例を参照してください。
irb(main):001:0> Ec2TypeSpecification.accessible_attributes
=> #<ActiveModel::MassAssignmentSecurity::WhiteList: {"", "api_name", "api_size", "api_type", "cores", "core_type", "compute_units", "ebs_optimization", "ephemeral_drives", "io_performance", "max_ips", "memory", "name", "support_32_bit", "support_64_bit", "total_ephemeral_storage"}>
なぜ空の文字列ですか?それは何をするためのものか?または、私のモデルに何か問題がありますか?
gem 'rails', '3.2.13'
編集:モデルを追加
それがモデル全体です(私は自分のプロジェクトにそれほど遠くありません)
class Ec2TypeSpecification < ActiveRecord::Base
attr_accessible :api_name, :api_size, :api_type, :cores, :core_type, :compute_units, :ebs_optimization,
:ephemeral_drives, :io_performance, :max_ips, :memory, :name, :support_32_bit, :support_64_bit,
:total_ephemeral_storage
end