0.0
Low commit activity in last 3 years
No release in over a year
Rails telephone link helper
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
~> 2.2
~> 12.3

Runtime

 Project Readme

TelLinkRails

Creates a tel: link tag to the specified number, which is also used as the name of the link unless name is specified. Additional HTML attributes for the link can be passed in html_options.

Installation

Add this line to your application's Gemfile:

gem 'tel_link_rails'

And then execute:

$ bundle

Or install it yourself as:

$ gem install tel_link_rails

Usage

tel_link '+44 20 8123 4567'
# => <a href="tel:+44-20-8123-4567">+44 20 8123 4567</a>

tel_link '+44 20 8123 4567', 'Telephone'
# => <a href="tel:+44-20-8123-4567">Telephone</a>

Contributing

  1. Fork it ( https://github.com/initforthe/tel_link_rails/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request