imagine-basic_list_view 0.1

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.
@@ -0,0 +1,21 @@
1
+ # Encoding: UTF-8
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{imagine-basic_list_view}
5
+ s.version = %q{0.1}
6
+ s.summary = %q{Basic list view for Imagine}
7
+ s.description = %q{The default album view for Imagine. Just lists images one after another}
8
+ s.date = %q{2011-08-28}
9
+ s.email = %q{josh@isotope11.com}
10
+ s.homepage = %q{http://github.com/knewter/imagine}
11
+ s.rubyforge_project = %q{imagine}
12
+ s.authors = ['Josh Adams']
13
+ s.license = %q{MIT}
14
+ s.require_paths = %w(lib)
15
+ s.executables = %w()
16
+
17
+ s.files = [
18
+ 'imagine-basic_list_view.gemspec',
19
+ 'lib/imagine-basic_list_view.rb'
20
+ ]
21
+ end
@@ -0,0 +1,27 @@
1
+ module Imagine
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
+ class Engine < ::Rails::Engine
12
+ isolate_namespace ::Imagine
13
+
14
+ config.after_initialize do |app|
15
+ ::Imagine::Plugin.register do |plugin|
16
+ plugin.pathname = root
17
+ plugin.name = 'imagine_basic_list_view'
18
+ plugin.directory = 'basic_list_view'
19
+ plugin.version = %q{0.0.1}
20
+ end
21
+ end
22
+
23
+ end
24
+ end
25
+ end
26
+
27
+ ::Imagine.engines << 'pages'
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: imagine-basic_list_view
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.1'
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Josh Adams
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-08-28 00:00:00.000000000Z
13
+ dependencies: []
14
+ description: The default album view for Imagine. Just lists images one after another
15
+ email: josh@isotope11.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - imagine-basic_list_view.gemspec
21
+ - lib/imagine-basic_list_view.rb
22
+ homepage: http://github.com/knewter/imagine
23
+ licenses:
24
+ - MIT
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ! '>='
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ none: false
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubyforge_project: imagine
43
+ rubygems_version: 1.8.6
44
+ signing_key:
45
+ specification_version: 3
46
+ summary: Basic list view for Imagine
47
+ test_files: []