1
0
mirror of https://github.com/seejohnrun/haste-client.git synced 2025-12-17 17:21:29 +00:00

3 Commits

Author SHA1 Message Date
John Crepezzi
b24842ac6f Bump version to 0.1.1 2012-01-28 10:10:39 -05:00
John Crepezzi
636eec2924 Change how the pathname is received in haste-client 2012-01-28 10:10:23 -05:00
John Crepezzi
cf4c274d67 Added a note on WinHaste to the README 2012-01-27 09:44:43 -05:00
3 changed files with 8 additions and 2 deletions

View File

@@ -33,6 +33,10 @@ alias work_haste="HASTE_SERVER=http://something.com haste"
After which you can use `work_haste` to send hastes to that server instead.
## Windows Support
If you'd like an alternative on Windows that supports functionality similar to `pbcopy`, check out Aidan Ryan's [WinHaste](https://github.com/ajryan/WinHaste) project.
## Author
John Crepezzi <john.crepezzi@gmail.com>

View File

@@ -1,6 +1,8 @@
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../lib/haste'
require 'pathname'
path = Pathname.new(__FILE__)
require File.expand_path(File.dirname(path.realpath) + '/../lib/haste')
cli = Haste::CLI.new
cli.start

View File

@@ -1,5 +1,5 @@
module Haste
VERSION = '0.1.0'
VERSION = '0.1.1'
end