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 27 28
|
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "mobile-fu/version"
require 'rake'
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 = ["brendangl@gmail.com, ben@langfeld.me"]
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 = FileList['lib/**/*.rb', '[A-Z]*'].to_a
s.test_files = FileList['test/*.rb'].to_a
s.executables = [ ]
s.require_path = 'lib'
s.add_dependency 'rails'
s.add_dependency 'rack-mobile-detect'
s.add_development_dependency 'mocha'
s.add_development_dependency 'rdoc'
s.add_development_dependency 'httparty'
end
|