grandstand 0.2.3 → 0.2.4
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.
- data/VERSION +1 -1
- data/grandstand.gemspec +2 -2
- data/lib/grandstand.rb +2 -1
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.4
|
data/grandstand.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{grandstand}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Flip Sasser"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-08-20}
|
|
13
13
|
s.description = %q{
|
|
14
14
|
Grandstand is a simple blog and photo gallery application. It takes a minimal amount of configuration and can
|
|
15
15
|
be built installed as a gem and used like any other thingymagig. It's totally cool.
|
data/lib/grandstand.rb
CHANGED
|
@@ -3,11 +3,12 @@ require 'grandstand/application'
|
|
|
3
3
|
module Grandstand
|
|
4
4
|
autoload(:Controller, 'grandstand/controller')
|
|
5
5
|
autoload(:Helper, 'grandstand/helper')
|
|
6
|
+
autoload(:Session, 'grandstand/session')
|
|
6
7
|
|
|
7
8
|
def self.initialize!(config = nil)
|
|
8
9
|
if defined?(ActionController)
|
|
9
10
|
ActionController::Base.send :include, Grandstand::Controller
|
|
10
|
-
if Rails.env.development?
|
|
11
|
+
if Rails.env.development? && defined?(Less) && defined?(Less::More)
|
|
11
12
|
ActionController::Base.send :include, Grandstand::Controller::Development
|
|
12
13
|
# Tell Less to produce the smallest stylesheets it's capable of
|
|
13
14
|
Less::More.compression = true
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: grandstand
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 31
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.2.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Flip Sasser
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-
|
|
18
|
+
date: 2010-08-20 00:00:00 -04:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies: []
|
|
21
21
|
|