Sha256: 66fa38af298f57a21a344021334925c3ed8972d66f6ee3ae3a853c7d995980dd

Contents?: true

Size: 693 Bytes

Versions: 1

Compression:

Stored size: 693 Bytes

Contents

# Inspired from https://guides.rubygems.org/make-your-own-gem/#introduction


module Storazzo
    #VERSION = File.read('./VERSION').chomp # "10.0.0"
    #require 'storazzo/translator'

    def latest_parser_version 
        "1.2"
    end 

    # Finds RAILS_ROOT for Storazzo Gem. Copied from:
    # https://stackoverflow.com/questions/10132949/finding-the-gem-root
    def self.root 
        File.expand_path '../..', __FILE__
    end

    def self.version 
        File.read(self.root + '/VERSION').chomp # "10.0.0"
    end
end 

require 'storazzo/colors'
require 'storazzo/hashify'
require 'storazzo/ric_disk'
require 'storazzo/main'
require 'storazzo/translator'

puts Storazzo::Main.hi 

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
storazzo-0.1.2 lib/storazzo.rb