imagine-basic_list_view 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/imagine-basic_list_view.gemspec +1 -1
- data/lib/imagine-basic_list_view.rb +1 -9
- metadata +1 -1
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{imagine-basic_list_view}
|
5
|
-
s.version = %q{0.1.
|
5
|
+
s.version = %q{0.1.2}
|
6
6
|
s.summary = %q{Basic list view for Imagine}
|
7
7
|
s.description = %q{The default album view for Imagine. Just lists images one after another}
|
8
8
|
s.date = %q{2011-08-28}
|
@@ -1,13 +1,5 @@
|
|
1
1
|
module Imagine
|
2
2
|
module BasicListView
|
3
|
-
|
4
|
-
class << self
|
5
|
-
attr_accessor :root
|
6
|
-
def root
|
7
|
-
@root ||= Pathname.new(File.expand_path('../../', __FILE__))
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
3
|
class Engine < ::Rails::Engine
|
12
4
|
isolate_namespace ::Imagine
|
13
5
|
|
@@ -16,7 +8,7 @@ module Imagine
|
|
16
8
|
plugin.pathname = root
|
17
9
|
plugin.name = 'imagine_basic_list_view'
|
18
10
|
plugin.directory = 'basic_list_view'
|
19
|
-
plugin.version = %q{0.
|
11
|
+
plugin.version = %q{0.1.2}
|
20
12
|
end
|
21
13
|
end
|
22
14
|
|