jquerymobile-rails 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +6 -0
- data/Gemfile +4 -0
- data/LICENSE +21 -0
- data/README.md +33 -0
- data/Rakefile +2 -0
- data/jquerymobile-rails.gemspec +20 -0
- data/lib/jquerymobile-rails/version.rb +10 -0
- data/lib/jquerymobile-rails.rb +6 -0
- data/vendor/assets/images/jquerymobile/ajax-loader.gif +0 -0
- data/vendor/assets/images/jquerymobile/ajax-loader.png +0 -0
- data/vendor/assets/images/jquerymobile/icons-18-black.png +0 -0
- data/vendor/assets/images/jquerymobile/icons-18-white.png +0 -0
- data/vendor/assets/images/jquerymobile/icons-36-black.png +0 -0
- data/vendor/assets/images/jquerymobile/icons-36-white.png +0 -0
- data/vendor/assets/javascripts/jquerymobile.js +7551 -0
- data/vendor/assets/stylesheets/jquerymobile.css.erb +2053 -0
- metadata +78 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
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,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
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|