Skip to content

Commit

Permalink
Push version + fix small new app generation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
iox committed Sep 13, 2015
1 parent d09ffab commit 416a95d
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dryml/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.3
2 changes: 1 addition & 1 deletion dryml/lib/dryml/part_context.rb
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def unmarshal(client_store, page_this, session)

# Generate the HMAC keyed message digest. Uses SHA1 by default.
def generate_digest(data, session)
secret = self.class.secret || Rails.application.config.secret_key_base || Rails.application.config.secret_token
secret = self.class.secret || Rails.application.secrets.secret_key_base || Rails.application.config.secret_key_base || Rails.application.config.secret_token
key = secret.respond_to?(:call) ? secret.call(session) : secret
OpenSSL::HMAC.hexdigest(OpenSSL::Digest.new(self.class.digest), key, data)
end
Expand Down
2 changes: 1 addition & 1 deletion hobo/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.3
2 changes: 1 addition & 1 deletion hobo/lib/generators/hobo/assets/assets_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def copy_rapid_files
copy_file 'gitkeep', 'app/assets/javascripts/front/.gitkeep'

application "#"
application "config.assets.precompile += %w(front.css front.js)"
application "config.assets.precompile += %w(front.css front.js ajax-loader.gif)"
application "# Hobo: the front subsite loads front.css & front.js"
end

Expand Down
2 changes: 1 addition & 1 deletion hobo_clean/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.3
2 changes: 1 addition & 1 deletion hobo_clean_admin/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.3
2 changes: 1 addition & 1 deletion hobo_clean_sidemenu/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.3
2 changes: 1 addition & 1 deletion hobo_fields/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.3
2 changes: 1 addition & 1 deletion hobo_jquery/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.3
2 changes: 1 addition & 1 deletion hobo_jquery_ui/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.3
2 changes: 1 addition & 1 deletion hobo_rapid/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.3
2 changes: 1 addition & 1 deletion hobo_support/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.3

0 comments on commit 416a95d

Please sign in to comment.