|
1 | | -# Generated by jeweler |
2 | | -# DO NOT EDIT THIS FILE DIRECTLY |
3 | | -# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command |
4 | 1 | # -*- encoding: utf-8 -*- |
| 2 | +$:.push File.expand_path("../lib", __FILE__) |
| 3 | +require "browser/version" |
5 | 4 |
|
6 | 5 | Gem::Specification.new do |s| |
7 | | - s.name = %q{browser} |
8 | | - s.version = "0.1.2" |
| 6 | + s.name = "browser" |
| 7 | + s.version = Browser::Version::STRING |
| 8 | + s.platform = Gem::Platform::RUBY |
| 9 | + s.authors = ["Nando Vieira"] |
| 10 | + s.email = ["fnando.vieira@gmail.com"] |
| 11 | + s.homepage = "http://github.com/fnando/browser" |
| 12 | + s.summary = "Do some browser detection with Ruby." |
| 13 | + s.description = s.summary |
9 | 14 |
|
10 | | - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= |
11 | | - s.authors = ["Nando Vieira"] |
12 | | - s.date = %q{2010-10-28} |
13 | | - s.email = %q{fnando.vieira@gmail.com} |
14 | | - s.extra_rdoc_files = [ |
15 | | - "README.rdoc" |
16 | | - ] |
17 | | - s.files = [ |
18 | | - "README.rdoc", |
19 | | - "Rakefile", |
20 | | - "lib/browser.rb", |
21 | | - "lib/browser/action_controller.rb", |
22 | | - "lib/browser/version.rb", |
23 | | - "test/browser_test.rb" |
24 | | - ] |
25 | | - s.homepage = %q{http://github.com/fnando/browser} |
26 | | - s.rdoc_options = ["--charset=UTF-8"] |
| 15 | + s.files = `git ls-files`.split("\n") |
| 16 | + s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") |
| 17 | + s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } |
27 | 18 | s.require_paths = ["lib"] |
28 | | - s.rubygems_version = %q{1.3.7} |
29 | | - s.summary = %q{Do some browser detection with Ruby.} |
30 | | - s.test_files = [ |
31 | | - "test/browser_test.rb" |
32 | | - ] |
33 | 19 |
|
34 | | - if s.respond_to? :specification_version then |
35 | | - current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION |
36 | | - s.specification_version = 3 |
37 | | - |
38 | | - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then |
39 | | - else |
40 | | - end |
41 | | - else |
42 | | - end |
| 20 | + s.add_development_dependency "actionpack" , "~> 3.0" |
| 21 | + s.add_development_dependency "rake" , "~> 0.9" |
43 | 22 | end |
44 | | - |
0 commit comments