Skip to content

Commit 9f723eb

Browse files
committed
initial import: 0.0.1
0 parents  commit 9f723eb

24 files changed

+8704
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.gem
2+
.bundle
3+
Gemfile.lock
4+
pkg/*

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "http://rubygems.org"
2+
3+
# Specify your gem's dependencies in jquery-datatables-rails.gemspec
4+
gemspec

Rakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require "bundler/gem_tasks"

jquery-datatables-rails.gemspec

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- encoding: utf-8 -*-
2+
$:.push File.expand_path("../lib", __FILE__)
3+
require "jquery/datatables/rails/version"
4+
5+
Gem::Specification.new do |s|
6+
s.name = "jquery-datatables-rails"
7+
s.version = Jquery::Datatables::Rails::VERSION
8+
s.authors = ["Robin Wenglewski"]
9+
s.email = ["robin@wenglewski.de"]
10+
s.homepage = ""
11+
s.summary = %q{jquery datatables for rails}
12+
s.description = %q{}
13+
14+
s.files = `git ls-files`.split("\n")
15+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
17+
s.require_paths = ["lib"]
18+
19+
s.add_runtime_dependency "jquery-rails"
20+
end

lib/jquery-datatables-rails.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
require "jquery/datatables/rails/version"
2+
require "jquery/datatables/rails/engine"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Configure for Rails 3.1
2+
module Jquery
3+
module Datatables
4+
module Rails
5+
class Engine < ::Rails::Engine
6+
end
7+
end
8+
end
9+
end
10+
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module Jquery
2+
module Datatables
3+
module Rails
4+
VERSION = "0.0.1"
5+
end
6+
end
7+
end
6 KB
Binary file not shown.
612 Bytes
Loading
807 Bytes
Loading

0 commit comments

Comments
 (0)