Skip to content

Commit

Permalink
Add an empty executable, powered by thor
Browse files Browse the repository at this point in the history
  • Loading branch information
mmozuras committed Jul 27, 2013
1 parent 04b02ac commit 5de7f86
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions bin/pronto
@@ -0,0 +1,6 @@
#!/usr/bin/env ruby

require 'pronto'
require 'pronto/cli'

Pronto::CLI.start
6 changes: 6 additions & 0 deletions lib/pronto/cli.rb
@@ -0,0 +1,6 @@
require 'thor'

module Pronto
class CLI < Thor
end
end
2 changes: 2 additions & 0 deletions pronto.gemspec
Expand Up @@ -19,8 +19,10 @@ Gem::Specification.new do |s|
s.files = Dir.glob('{lib}/**/*') + %w[LICENSE README.md]
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.require_paths = ['lib']
s.executables << 'pronto'

s.add_dependency 'grit-ext', '~> 0.0.11'
s.add_dependency 'thor', '~> 0.18.0'
s.add_development_dependency 'rake', '~> 10.1.0'
s.add_development_dependency 'rspec', '~> 2.13.0'
end

0 comments on commit 5de7f86

Please sign in to comment.