Skip to content

Commit 22fe141

Browse files
committed
add lib files to add assets
1 parent 52c1ecd commit 22fe141

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed

lib/jquery-datatables-rails.rb

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require 'jquery_datatables/rails'

lib/jquery_datatables/rails.rb

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module JqueryDatatables
2+
module Rails
3+
require 'jquery_datatables/rails/version.rb'
4+
require 'jquery_datatables/rails/engine.rb'
5+
end
6+
end

lib/jquery_datatables/rails/engine.rb

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Configure Rails 3.1
2+
module JqueryDatatables
3+
module Rails
4+
class Engine < ::Rails::Engine
5+
end
6+
end
7+
end
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module JqueryDatatables
2+
module Rails
3+
VERSION = "0.1.0"
4+
end
5+
end

0 commit comments

Comments
 (0)