Skip to content

Commit cc096dc

Browse files
committed
Update license, README, gemspec
1 parent 944d6ef commit cc096dc

File tree

3 files changed

+29
-20
lines changed

3 files changed

+29
-20
lines changed

LICENSE renamed to LICENSE.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012 jules@julescopeland.com
1+
Copyright (c) 2013 kraut computing UG (haftungsbeschränkt)
22

33
MIT License
44

@@ -19,4 +19,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1919
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2020
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2121
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Rails Bootstrap Navbar
22

3-
[![Gem Version](https://badge.fury.io/rb/rails_bootstrap_navbar.png)](http://badge.fury.io/rb/Rails-Bootstrap-Navbar)
4-
[![Build Status](https://secure.travis-ci.org/julescopeland/Rails-Bootstrap-Navbar.png)](http://travis-ci.org/julescopeland/Rails-Bootstrap-Navbar)
5-
[![Dependency Status](https://gemnasium.com/julescopeland/Rails-Bootstrap-Navbar.png)](https://gemnasium.com/julescopeland/Rails-Bootstrap-Navbar)
6-
[![Code Climate](https://codeclimate.com/github/julescopeland/Rails-Bootstrap-Navbar.png)](https://codeclimate.com/github/julescopeland/Rails-Bootstrap-Navbar)
3+
[![Gem Version](https://badge.fury.io/rb/rails_bootstrap_navbar.png)](http://badge.fury.io/rb/rails-bootstrap-navbar)
4+
[![Build Status](https://secure.travis-ci.org/krautcomputing/rails-bootstrap-navbar.png)](http://travis-ci.org/krautcomputing/rails-bootstrap-navbar)
5+
[![Dependency Status](https://gemnasium.com/krautcomputing/rails-bootstrap-navbar.png)](https://gemnasium.com/krautcomputing/rails-bootstrap-navbar)
6+
[![Code Climate](https://codeclimate.com/github/krautcomputing/rails-bootstrap-navbar.png)](https://codeclimate.com/github/krautcomputing/rails-bootstrap-navbar)
77

88
Easily generate a [Twitter Bootstrap navbar](http://twitter.github.io/bootstrap/components.html#navbar) in your Rails app
99

@@ -35,6 +35,10 @@ The gem [bootstrap-navbar](https://github.com/krautcomputing/bootstrap-navbar) i
3535

3636
[Usage with Bootstrap 3.x](https://github.com/krautcomputing/bootstrap-navbar/wiki/Usage-with-Bootstrap-3.x)
3737

38+
## Acknowledgements
39+
40+
Thanks to [Jules Copeland](https://github.com/julescopeland) for the initial version of this gem!
41+
3842
## Contributing
3943

4044
1. Fork it

rails_bootstrap_navbar.gemspec

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,26 @@
1-
# -*- encoding: utf-8 -*-
2-
require File.expand_path('../lib/rails_bootstrap_navbar/version', __FILE__)
1+
# encoding: utf-8
32

4-
Gem::Specification.new do |gem|
5-
gem.authors = ["Jules Copeland"]
6-
gem.email = ["jules@julescopeland.com"]
7-
gem.description = %q{A helper method for easy generation of Twitter Bootstrap Navigation menus in Rails}
8-
gem.summary = %q{Generate Bootstrap Navbars in Rails views}
9-
gem.homepage = ""
3+
lib = File.expand_path('../lib', __FILE__)
4+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5+
6+
require 'rails-bootstrap-navbar/version'
107

11-
gem.files = `git ls-files`.split($\)
12-
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13-
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14-
gem.name = "rails_bootstrap_navbar"
15-
gem.require_paths = ["lib"]
16-
gem.version = RailsBootstrapNavbar::VERSION
8+
Gem::Specification.new do |gem|
9+
gem.name = 'rails_bootstrap_navbar'
10+
gem.version = Middleman::BootstrapNavbar::VERSION
11+
gem.platform = Gem::Platform::RUBY
12+
gem.authors = ['Manuel Meurer']
13+
gem.email = 'manuel.meurer@gmail.com'
14+
gem.description = 'Easily generate a Twitter Bootstrap navbar in your Rails app'
15+
gem.summary = 'Easily generate a Twitter Bootstrap navbar in your Rails app'
16+
gem.homepage = 'https://github.com/krautcomputing/rails-bootstrap-navbar'
1717
gem.license = 'MIT'
1818

19+
gem.files = `git ls-files`.split($/)
20+
gem.executables = gem.files.grep(%r(^bin/)).map { |f| File.basename(f) }
21+
gem.test_files = gem.files.grep(%r(^(test|spec|features)/))
22+
gem.require_paths = ['lib']
23+
1924
gem.add_development_dependency 'rake', '>= 10.0.0'
2025
gem.add_development_dependency 'rspec', '~> 2.13'
2126
gem.add_development_dependency 'guard-rspec', '~> 3.0'

0 commit comments

Comments
 (0)