icon_link 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8128c8ba21bdf7875199e3b21ea2ece2ec10b4c2
4
- data.tar.gz: d99c5e08da8c6ca6efde5edc92767cd0679c4495
3
+ metadata.gz: 6783d7af9f1d1417f234d9c9faf281ac3a9edb95
4
+ data.tar.gz: 619adf9d04e3176ad4accfb993dacceecf452087
5
5
  SHA512:
6
- metadata.gz: d58ccd1b1890e9a03f5e019245845a00e8839bb6223b882f97f32342ff61daf73919462298d174b54e24fb7be999225ed1fd4545c3e6d9f27a7034dffde61132
7
- data.tar.gz: ea6979b815deff07a613ba77fde753b5c1cc5f1af00a76f98bd183ecc749d95188cb293ca020bd942f54a4413940148c6839ee06a6bd307e6682a0e37f8b819f
6
+ metadata.gz: ca73917149ce9ee8e497f0ce1b8c5c82f5d14a365b41c348ae1ff21874581d5e2da5bee85a7bac37bee5b1a5519c2850bd8206c83b55fce6c988124a681c7ea1
7
+ data.tar.gz: ecfae05fd181fc89734db34e5aac09db2cefd86cd5a80929311dbe408d30935cc2333c202f0f031f7ade82929a79a2742ee29b3a708fd2334c7779406ad6fe27
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # IconLink
2
2
  [![Build Status](https://secure.travis-ci.org/noroddsto/icon_link.png?branch=master)](https://travis-ci.org/noroddsto/icon_link)
3
3
  [![Code Climate](https://codeclimate.com/github/noroddsto/icon_link.png)](https://codeclimate.com/github/noroddsto/icon_link)
4
+ [![Gem Version](https://badge.fury.io/rb/icon_link.png)](http://badge.fury.io/rb/icon_link)
4
5
 
5
6
  View helper methods that makes it easy to add the html that is needed to display icons (from Font Awesome or Twitter Bootstrap) within links, or buttons.
6
7
 
@@ -15,9 +15,9 @@ Gem::Specification.new do |gem|
15
15
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
16
16
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
17
17
  gem.require_paths = ["lib"]
18
-
19
18
  gem.add_development_dependency "rspec"
20
19
  gem.add_development_dependency "rake"
21
20
  gem.add_development_dependency "capybara"
22
21
  gem.add_development_dependency('actionpack', '~> 3.0')
22
+ gem.license = 'MIT'
23
23
  end
@@ -1,3 +1,3 @@
1
1
  module IconLink
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
@@ -41,7 +41,7 @@ module IconLink
41
41
  #
42
42
  # === Examples
43
43
  # icon_for("icon-comment")
44
- # # => <i class="your-icon"></i>
44
+ # # => <i class="icon-comment"></i>
45
45
  def icon_for(icon)
46
46
  content_tag(:i, nil, class: icon.to_s)
47
47
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: icon_link
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - NorOddSto
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-15 00:00:00.000000000 Z
11
+ date: 2013-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -89,7 +89,8 @@ files:
89
89
  - spec/icon_link/icon_link_spec.rb
90
90
  - spec/spec_helper.rb
91
91
  homepage: ''
92
- licenses: []
92
+ licenses:
93
+ - MIT
93
94
  metadata: {}
94
95
  post_install_message:
95
96
  rdoc_options: []