Sha256: cf22d702866823263d8df6521c5a5cfc6fc62f190b3d9cacedbbb8bd0d542d4f

Contents?: true

Size: 1.44 KB

Versions: 1

Compression:

Stored size: 1.44 KB

Contents

# -*- encoding: utf-8 -*-
#$:.push File.expand_path("../lib", __FILE__)
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require "mobile-fu-for-jquery-mobile/version"
require 'rake'

Gem::Specification.new do |s|
  s.name        = "mobile-fu-for-jquery-mobile"
  s.version     = MobileFuForJqueryMobile::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Brendan Lim", "Ben Langfeld"]
  s.email       = ["weilaixiang86@gmail.com"]
  s.homepage    = "https://github.com/xuzh86/mobile-fu-for-jquery-mobile"
  s.summary     = %q{ Automatically detect mobile requests from mobile devices in your Rails application.And add jquery mobile lib/assets in you site. }
  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-for-jquery-mobile"

  s.files         = FileList['lib/**/*.rb', '[A-Z]*', 'app/**/*.*'].to_a #`git ls-files`.split($/) 
  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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mobile-fu-for-jquery-mobile-1.0.1 mobile-fu-for-jquery-mobile.gemspec