Sha256: 9bad4f98a62f4df4cb8a84c7414c85fd4bb4cdabe0c99d7bedbcc82f1ea79942

Contents?: true

Size: 1.18 KB

Versions: 4

Compression:

Stored size: 1.18 KB

Contents

gem 'dragonfly', :path => File.expand_path('../..', __FILE__)
generate "dragonfly"
generate "scaffold", "photo image_uid:string image_name:string"
rake "db:migrate"
route %(
  get "text/:text" => Dragonfly.app.endpoint { |params, app|
    app.generate(:text, params[:text])
  }
)
route "root :to => 'photos#index'"
run "rm -rf public/index.html"

possible_base_classes = ['ActiveRecord::Base', 'ApplicationRecord']
possible_base_classes.each do |base_class|
  inject_into_file 'app/models/photo.rb', :after => "class Photo < #{base_class}\n" do
    %(
      attr_accessible :image rescue nil
      dragonfly_accessor :image
    )
  end
end

gsub_file 'app/views/photos/_form.html.erb', /^.*:image_.*$/, ''

inject_into_file 'app/views/photos/_form.html.erb', :before => %(<div class="actions">\n) do
  %(
    <div class="field">
      <%= form.label :image %><br>
      <%= form.file_field :image %>
    </div>

    <%= image_tag @photo.image.thumb('100x100').url if @photo.image_stored? %>
  )
end

gsub_file "app/controllers/photos_controller.rb", "permit(", "permit(:image, "

append_file 'app/views/photos/show.html.erb', %(
 <%= image_tag @photo.image.thumb('300x300').url if @photo.image_stored? %>
)

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dragonfly-1.2.1 dev/rails_template.rb
dragonfly-1.2.0 dev/rails_template.rb
dragonfly-1.1.5 dev/rails_template.rb
dragonfly-1.1.4 dev/rails_template.rb