Skip to content
This repository was archived by the owner on Apr 27, 2022. It is now read-only.

Add cli tool for project config #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -2,6 +2,12 @@
# the following line to use 'https'
source 'http://rubygems.org'

# command line interface
gem 'thor'

# environment
gem 'dotenv'

# Core
gem 'middleman', '~> 4.2.0'
gem 'middleman-autoprefixer', '~> 2.7.1'
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -160,6 +160,7 @@ PLATFORMS
ruby

DEPENDENCIES
dotenv
middleman (~> 4.2.0)
middleman-autoprefixer (~> 2.7.1)
middleman-deploy!
@@ -172,6 +173,7 @@ DEPENDENCIES
oga (~> 2.8)
rake
slim (~> 3.0.7)
thor

BUNDLED WITH
1.15.3
2 changes: 2 additions & 0 deletions config.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
require 'dotenv/load'
require 'slim'

activate :my_feature,
activate :autoprefixer, browsers: ['last 2 versions', 'ie 8', 'ie 9']
activate :livereload
activate :directory_indexes
22 changes: 22 additions & 0 deletions lib/codeless_cli.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/env ruby

require "thor"

class CodelessCLI < Thor
include Thor::Actions

desc 'getInfo', 'tell us your info'

def get_user_info
say("\n\nHello, before we continue I need some information from you...\n\n\n")

[ 'name', 'github', 'twitter' ].each do |info|
append_to_file '.env', "\n#{info.upcase}='#{ask("\n\nWhat is your #{info}?\n", :yellow)}'"
end

say("\n\nComplete!\n\n", :green)
end

end

CodelessCLI.start(ARGV)
28 changes: 28 additions & 0 deletions lib/codeless_extension.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
require 'codeless_cli'

class MyFeature < Middleman::Extension
# All the options for this extension
option :foo, false, 'Controls whether we foo'

def initialize(app, options_hash={}, &block)
super

puts options.foo
puts options.foo
puts options.foo
puts options.foo
puts options.foo
puts options.foo
puts options.foo
puts options.foo
puts options.foo
puts options.foo
puts options.foo
end

def after_build(builder)
builder.thor.run './codeless_cli.rb'
end
end

::Middleman::Extensions.register(:my_feature, MyFeature)