Sha256: b589b7cb05fdf34b21c6ccbaba4e4a907977c3f812b4dc0679fc29a807342062
Contents?: true
Size: 537 Bytes
Versions: 63
Compression:
Stored size: 537 Bytes
Contents
run "rm public/index.html" gem "friendly_id" gem "haml" gem "will_paginate" run "haml --rails ." generate "friendly_id" generate :haml_scaffold, "post title:string" route "map.root :controller => 'posts', :action => 'index'" rake "db:migrate" rake "db:fixtures:load" file 'app/models/post.rb', %q{class Post < ActiveRecord::Base has_friendly_id :title, :use_slug => true end} file 'test/fixtures/slugs.yml', %q{ one: name: mystring sequence: 1 sluggable: one (Post) two: name: mystring sequence: 1 sluggable: two (Post) }
Version data entries
63 entries across 63 versions & 4 rubygems