Remove active_support from the development dependancies.

This commit is contained in:
Dylan Thacker-Smith
2014-04-11 14:26:40 -04:00
parent c098235baa
commit f5502e8152
5 changed files with 4 additions and 12 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
require 'yaml'
module Database
module Database
# Load the standard vision toolkit database and re-arrage it to be simply exportable
# to liquid as assigns. All this is based on Shopify
def self.tables
+3 -1
View File
@@ -1,7 +1,9 @@
require 'json'
module JsonFilter
def json(object)
object.reject {|k,v| k == "collections" }.to_json
JSON.dump(object.reject {|k,v| k == "collections" })
end
end