jquerymobile-rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,6 @@
1
+ *.gem
2
+ .bundle
3
+ .DS_Store
4
+ Gemfile.lock
5
+ pkg/*
6
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source :gemcutter
2
+
3
+ # Specify your gem's dependencies in jquery_mobile-rails.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2012 Rudy Industries Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # jQueryMobile-rails
2
+
3
+ jQueryMobile! For Rails! So Greate.
4
+
5
+ This gem provides:
6
+
7
+ * jQueryMobile 1.1.0.rc2
8
+
9
+ ### Installation
10
+
11
+ In your Gemfile, add this line:
12
+
13
+ gem "jquerymobile-rails"
14
+
15
+ Then, run `bundle install`.
16
+
17
+ # Rails > 3.1
18
+
19
+ For Rails 3.1 and greater, the files will be added to the asset pipeline and available for you to use.
20
+
21
+ The following will need to be added to the file `app/assets/javascripts/application.js`:
22
+
23
+ //= require jquerymobile
24
+
25
+ The following will need to be added to the file `app/assets/stylesheets/application.css`:
26
+
27
+ *= require jquerymobile
28
+
29
+
30
+ ## Rails \< 3.1
31
+
32
+ This gem does not support Rails versions preceeding 3.1.
33
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,20 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "jquerymobile-rails/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "jquerymobile-rails"
7
+ s.version = JqueryMobile::Rails::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Kurt Rudolph"]
10
+ s.email = ["RubyGems@rudyindustries.com"]
11
+ s.homepage = "http://rudyindustries.github.com/jquerymobile-rails"
12
+ s.summary = "jQueryMobile! For Rails! So Greate."
13
+ s.description = "This gem incorporates the jQueryMobile assets into your Rails application."
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
17
+ s.require_path = 'lib'
18
+
19
+ s.add_development_dependency("rake", ["~> 0.9.2"])
20
+ end
@@ -0,0 +1,10 @@
1
+ module JqueryMobile
2
+ module Rails
3
+ major = 0
4
+ minor = 1
5
+ tiny = 0
6
+ #pre = "a"
7
+
8
+ VERSION = [major, minor, tiny].compact.join('.')
9
+ end
10
+ end
@@ -0,0 +1,6 @@
1
+ module JqueryMobile
2
+ module Rails
3
+ class Engine < ::Rails::Engine
4
+ end
5
+ end
6
+ end