Skip to content

Commit c2036ff

Browse files
committed
bump to 0.0.3
1 parent cb3a6ee commit c2036ff

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

browser_detect-0.0.3.gem

53 KB
Binary file not shown.

browser_detect.gemspec

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
# -*- encoding: utf-8 -*-
2-
require File.expand_path("../lib/browser_detect/version", __FILE__)
3-
2+
require File.expand_path("../lib/version", __FILE__)
3+
files = `git ls-files`.split("\n")
44
Gem::Specification.new do |s|
55
s.name = "browser_detect"
6-
s.version = "0.0.2"
6+
s.version = BrowserDetect::VERSION.strip
77
s.platform = Gem::Platform::RUBY
88
s.authors = ["rlivsey", "faunzy", "tmlee", "ggilder"]
99
s.email = []
10+
s.has_rdoc = 'yard'
1011
s.homepage = "http://github.com/traction/browser_detect"
1112
s.summary = "A simple rails browser detection plugin"
1213
s.description = <<-END
13-
Simple rails browser detection based on plugin by Richard Livsey"
14+
Simple rails browser detection based on original plugin by Richard Livsey"
1415
END
1516

1617
s.required_rubygems_version = ">= 1.3.6"
1718
s.rubyforge_project = "browser_detect"
18-
1919
s.add_development_dependency "bundler", ">= 1.0.0.rc.6"
20-
21-
s.files = `git ls-files`.split("\n")
22-
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
20+
21+
s.files = files.reject{|f| f =~ /\.gem$/}
22+
s.executables = files.map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
2323
s.require_path = 'lib'
2424
end

lib/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module BrowserDetect
2-
VERSION = "0.0.2"
2+
VERSION = "0.0.3"
33
end

0 commit comments

Comments
 (0)