diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/wittle_tasks.rake | 4 | ||||
-rw-r--r-- | lib/wittle.rb | 6 | ||||
-rw-r--r-- | lib/wittle/engine.rb | 5 | ||||
-rw-r--r-- | lib/wittle/version.rb | 3 |
4 files changed, 18 insertions, 0 deletions
diff --git a/lib/tasks/wittle_tasks.rake b/lib/tasks/wittle_tasks.rake new file mode 100644 index 0000000..854e5c9 --- /dev/null +++ b/lib/tasks/wittle_tasks.rake | |||
@@ -0,0 +1,4 @@ | |||
1 | # desc "Explaining what the task does" | ||
2 | # task :wittle do | ||
3 | # # Task goes here | ||
4 | # end | ||
diff --git a/lib/wittle.rb b/lib/wittle.rb new file mode 100644 index 0000000..44bfc3f --- /dev/null +++ b/lib/wittle.rb | |||
@@ -0,0 +1,6 @@ | |||
1 | require "wittle/version" | ||
2 | require "wittle/engine" | ||
3 | |||
4 | module Wittle | ||
5 | # Your code goes here... | ||
6 | end | ||
diff --git a/lib/wittle/engine.rb b/lib/wittle/engine.rb new file mode 100644 index 0000000..5c73a8e --- /dev/null +++ b/lib/wittle/engine.rb | |||
@@ -0,0 +1,5 @@ | |||
1 | module Wittle | ||
2 | class Engine < ::Rails::Engine | ||
3 | isolate_namespace Wittle | ||
4 | end | ||
5 | end | ||
diff --git a/lib/wittle/version.rb b/lib/wittle/version.rb new file mode 100644 index 0000000..a1538e2 --- /dev/null +++ b/lib/wittle/version.rb | |||
@@ -0,0 +1,3 @@ | |||
1 | module Wittle | ||
2 | VERSION = "0.1.0" | ||
3 | end | ||