jsgem-jquery-ui 1.9.1.pre1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in jsgem-jquery.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 andyl
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # jsgem-jquery
2
+
3
+ jQuery for rails asset pipeline.
4
+
5
+ ## Usage
6
+
7
+ Add it to your Gemfile:
8
+
9
+ group :assets do
10
+ # Your other asset gems (sass-rails, coffee-rails, etc.)
11
+ gem 'jsgem-jquery'
12
+ end
13
+
14
+ Then add this to `app/assets/javascripts/application.js.coffee` :
15
+
16
+ #= require jquery
17
+
18
+ ## Versioning
19
+
20
+ This gem will mirror the jQuery versioning scheme.
21
+
22
+ Separate branches will be maintained in this git repo for different versions.
23
+
24
+
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'jsgem-jquery-ui/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "jsgem-jquery-ui"
8
+ gem.version = Jsgem::Jquery::Ui::VERSION
9
+ gem.authors = ["andyl"]
10
+ gem.email = ["andy@r210.com"]
11
+ gem.description = %q{jQuery-UI for Rails Asset Pipeline}
12
+ gem.summary = %q{jQuery-UI for Rails Asset Pipeline}
13
+ gem.homepage = "http://github.com/andyl/jsgem-jquery-ui"
14
+
15
+ gem.files = `git ls-files`.split($/)
16
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
+ gem.require_paths = ["lib"]
19
+ end
@@ -0,0 +1,7 @@
1
+ module Jsgem
2
+ module Jquery
3
+ module Ui
4
+ VERSION = "1.9.1.pre1"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ require "jsgem-jquery-ui/version"
2
+
3
+ module Jsgem
4
+ module Jquery
5
+ module Ui
6
+ class Engine < Rails::Engine
7
+ end
8
+ end
9
+ end
10
+ end