Sha256: ff1fd61bf9b1b9370fe442f68c52ec4748985ebaa779dcd91303e501f07fc4dc

Contents?: true

Size: 1.2 KB

Versions: 8

Compression:

Stored size: 1.2 KB

Contents

# -*- 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       = ["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         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_dependency 'rails'
  s.add_dependency 'rack-mobile-detect'
  s.add_development_dependency 'rspec'
  s.add_development_dependency 'rdoc'
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
mobile-fu-1.0.0 mobile-fu.gemspec
mobile-fu-0.3.0 mobile-fu.gemspec
mobile-fu-0.2.1 mobile-fu.gemspec
mobile-fu-0.2.0 mobile-fu.gemspec
mobile-fu-0.1.2 mobile-fu.gemspec
mobile-fu-0.1.1 mobile-fu.gemspec
mobile-fu-0.1.0 mobile-fu.gemspec
mobile-fu-0.0.1 mobile-fu.gemspec