diff options
author | Elvin Efendi <elvin.efendiyev@gmail.com> | 2016-01-04 11:00:14 -0500 |
---|---|---|
committer | Elvin Efendi <elvin.efendiyev@gmail.com> | 2016-01-04 11:00:14 -0500 |
commit | e41f7b429901eb38ad785ad1fc2527dd41f35959 (patch) | |
tree | 02ba46c4f7d43b5721f3eb7de38599e0e019e5cf /lib/oxidized/output/file.rb | |
parent | ef1a59d2b29df5b00246ee34eba96b0cf4927fa2 (diff) | |
parent | f339170c877ca296987d66c0c44223a8cad1d338 (diff) |
Merge pull request #17 from Shopify/merge-upstream
Merge upstream
Diffstat (limited to 'lib/oxidized/output/file.rb')
-rw-r--r-- | lib/oxidized/output/file.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/oxidized/output/file.rb b/lib/oxidized/output/file.rb index ba08683..bb13827 100644 --- a/lib/oxidized/output/file.rb +++ b/lib/oxidized/output/file.rb @@ -2,6 +2,8 @@ module Oxidized class OxidizedFile < Output require 'fileutils' + attr_reader :commitref + def initialize @cfg = Oxidized.config.output.file end @@ -22,6 +24,7 @@ class OxidizedFile < Output FileUtils.mkdir_p file file = File.join file, node open(file, 'w') { |fh| fh.write outputs.to_cfg } + @commitref = file end def fetch node, group @@ -39,5 +42,14 @@ class OxidizedFile < Output end end + def version node, group + # not supported + [] + end + + def get_version node, group, oid + 'not supported' + end + end end |