Project

rails_wink

0.0
No commit activity in last 3 years
No release in over 3 years
Wink is a simple, open-source tool for web developers built to save them time and to spare their clients the painful exercise of providing browser details during debugging. Originally written for PHP by Denim&Steel, this is a Rails 3 mountable engine that can be used as part of any Rails application.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 3.1.0
 Project Readme

Wink (for Rails)

About

We got tired of asking people to send us their browser information, screen size, and plugins... so we made it easier for everybody.
Wink grabs a snapshot of the current browser and sends it away.

Please fork and make it better!

This was originally implemented for PHP by Denim & Steel: https://github.com/denimandsteel/wink

##Installation Add gem 'rails_wink' to your Gemfile.

Generate the wink.yml configuration file with rails g rails_wink:config.
Edit the values to point to your support/bug tracking email address.

Mount the engine in your Rails application's config/routes.rb, like this:

Rails.application.routes.draw do

  # Mount the engine at /wink
  mount RailsWink::Engine => '/wink', :as => 'wink'

end

Run your application, and visit /wink.

You can now do cool things like link_to 'Report a Bug', wink.root_url in your application's views.

##License MIT License
Copyright (C) 2012 Darryl Pogue