lib/arxutils_sqlite3/arx.rb in arxutils_sqlite3-0.1.49 vs lib/arxutils_sqlite3/arx.rb in arxutils_sqlite3-0.1.50

- old
+ new

@@ -20,11 +20,11 @@ # :plural # :acrecord @data = data # スキーマ設定の:itemsの値を展開後格納するためのStructクラス - #@field ||= Struct.new("Field", :name, :type, :null) + # @field ||= Struct.new("Field", :name, :type, :null) @field ||= Struct.new(:name, :type, :null) @data[:ary] = if @data[:items] @data[:items].map { |x| @field.new(*x) } else @@ -33,10 +33,10 @@ end # テンプレートファイルを元にした変換結果を返す def create scope = Object.new - scope.instance_variable_set(:@data , @data) + scope.instance_variable_set(:@data, @data) Ykutils::Erubyx.erubi_render_with_template_file(@fname, scope) end end end