forked from benlangfeld/mobile-fu
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mobile-fu.gemspec
26 lines (22 loc) · 1.24 KB
/
mobile-fu.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "mobile-fu/version"
Gem::Specification.new do |s|
s.name = "mobile-fu"
s.version = MobileFu::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Brendan Lim", "Ben Langfeld"]
s.email = ["[email protected], [email protected]"]
s.homepage = "https://github.com/benlangfeld/mobile-fu"
s.summary = %q{Automatically detect mobile requests from mobile devices in your Rails application.}
s.description = %q{Want to automatically detect mobile devices that access your Rails application? Mobile Fu allows you to do just that. People can access your site from a Palm, Blackberry, iPhone, iPad, Nokia, etc. and it will automatically adjust the format of the request from :html to :mobile.}
s.rubyforge_project = "mobile-fu"
s.files = ["CHANGELOG", "MIT-LICENSE", "README.md", "lib/mobile-fu.rb", "lib/mobile-fu/helper.rb", "lib/mobile-fu/version.rb" ]
s.test_files = [ 'spec/mobilized_styles_spec.rb', 'spec/spec_helper.rb' ]
s.executables = [ ]
s.require_path = 'lib'
s.add_dependency 'rails'
s.add_dependency 'rack-mobile-detect'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rdoc'
end