Skip to content

Commit

Permalink
fix: Update paths
Browse files Browse the repository at this point in the history
  • Loading branch information
tacconthommy committed Nov 27, 2018
1 parent 5e9e15b commit 604a587
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bin/platte
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
# -*- mode: ruby -*-
# frozen_string_literal: true

require './lib/platte'
require 'platte'

Platte.start
2 changes: 1 addition & 1 deletion lib/combinator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require 'mustache'
require 'htmlbeautifier'
require './lib/platte_module'
require 'platte_module'

# Combinator class
class Combinator
Expand Down
4 changes: 2 additions & 2 deletions lib/platte.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
require 'thor'
require 'fileutils'
require 'colorize'
require './lib/combinator'
require './lib/platte_module_loader'
require 'combinator'
require 'platte_module_loader'

# Platte command line tool
class Platte < Thor
Expand Down
2 changes: 1 addition & 1 deletion lib/platte_module.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

require 'json'
require_relative 'exception/platte_module_creation_exception'
require 'exception/platte_module_creation_exception'

# A single module
class PlatteModule
Expand Down
Binary file added platte-0.1.2.gem
Binary file not shown.
2 changes: 1 addition & 1 deletion spec/combinator_spec.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

require './lib/combinator'
require 'combinator'

# rubocop:disable Metrics/BlockLength
# rubocop:disable Metrics/LineLength
Expand Down

0 comments on commit 604a587

Please sign in to comment.