jsgem-jquery-layout 1.2.0.pre1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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-layout.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,28 @@
1
+ # jsgem-jquery-layout
2
+
3
+ jQuery Layout 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-layout'
12
+ end
13
+
14
+ Then add this to `app/assets/javascripts/application.js.coffee` :
15
+
16
+ #= require jquery-layout
17
+
18
+ Then add this to `app/assets/stylesheets/application.css.scss` :
19
+
20
+ #= require jquery-layout
21
+
22
+ ## Versioning
23
+
24
+ This gem will mirror the jQuery Layout versioning scheme.
25
+
26
+ Separate branches will be maintained in this git repo for different versions.
27
+
28
+
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,21 @@
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-layout/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "jsgem-jquery-layout"
8
+ gem.version = Jsgem::Jquery::Layout::VERSION
9
+ gem.authors = ["andyl"]
10
+ gem.email = ["andy@r210.com"]
11
+ gem.description = %q{jQuery Layout for Rails Asset Pipeline}
12
+ gem.summary = %q{jQuery Layout for Rails Asset Pipeline}
13
+ gem.homepage = "http://github.com/andyl/jsgem-jquery-layout"
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
+
20
+ gem.add_dependency "railties", "~> 3.2"
21
+ end
@@ -0,0 +1,7 @@
1
+ module Jsgem
2
+ module Jquery
3
+ module Layout
4
+ VERSION = "1.2.0.pre1"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ require "jsgem-jquery-layout/version"
2
+
3
+ module Jsgem
4
+ module Jquery
5
+ module Layout
6
+ class Engine < Rails::Engine
7
+ end
8
+ end
9
+ end
10
+ end