visit "/projects"
visit post_comments_path(post)click_link "id-of-link"
click_link "Link Text"| android { | |
| signingConfigs { | |
| release | |
| } | |
| buildTypes { | |
| release { | |
| signingConfig signingConfigs.release | |
| } |
| # ... | |
| def get_pages | |
| # get an array of pages whose source filename contains .html | |
| @pages = sitemap.resources.find_all { |page| page.source_file.match(/\.html/) } | |
| # sort them by an arbitrary YAML frontmatter property called 'order' | |
| @pages.sort! { |a,b| a.data['order'].to_i <=> b.data['order'].to_i } | |
| end |