Skip to content

Commit

Permalink
Merge branch 'master' into issue-119
Browse files Browse the repository at this point in the history
  • Loading branch information
donthorp committed Feb 26, 2013
2 parents 25cb0f7 + bf59ed7 commit d6a3291
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/pages/about.html.erb
Expand Up @@ -7,7 +7,7 @@
<img class="aboutlogo" src="/assets/kandanlogo.png" height="125" width="125">
</h1>

<h3>Version 1.0 (<%= AppName::REVISION %>)</h3>
<h3><%= AppName::VERSION %> (<%= AppName::REVISION %>)</h3>

<h3>Description</h3>

Expand Down
2 changes: 1 addition & 1 deletion config/application.rb
Expand Up @@ -50,7 +50,7 @@ class Application < Rails::Application
# Configure sensitive parameters which will be filtered from the log file.
config.filter_parameters += [:password]

config.assets.precompile += ["lib/admin.js", "admin.css"]
config.assets.precompile += ["admin/admin.js", "admin.css"]

# Use SQL instead of Active Record's schema dumper when creating the database.
# This is necessary if your schema can't be completely dumped by the schema dumper,
Expand Down
1 change: 1 addition & 0 deletions config/initializers/git_revision.rb
@@ -1,3 +1,4 @@
module AppName
VERSION = 'Version 1.1'
REVISION = `git log --pretty=format:'%h' -n 1`
end

0 comments on commit d6a3291

Please sign in to comment.