Skip to content

Commit

Permalink
Update URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
julienXX committed Oct 29, 2017
1 parent 846ca1a commit ea6733b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ which are available on macOS 10.10 and higher.
## Download

Prebuilt binaries are available from the
[releases section](https://github.com/alloy/terminal-notifier/releases).
[releases section](https://github.com/julienXX/terminal-notifier/releases).

Or if you want to use this from
[Ruby](https://github.com/alloy/terminal-notifier/tree/master/Ruby), you can
[Ruby](https://github.com/julienXX/terminal-notifier/tree/master/Ruby), you can
install it through RubyGems:

```
Expand Down
8 changes: 4 additions & 4 deletions Ruby/README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Examples are:
TerminalNotifier.notify('Hello World')
TerminalNotifier.notify('Hello World', :title => 'Ruby', :subtitle => 'Programming Language')
TerminalNotifier.notify('Hello World', :activate => 'com.apple.Safari')
TerminalNotifier.notify('Hello World', :open => 'http://twitter.com/alloy')
TerminalNotifier.notify('Hello World', :open => 'http://twitter.com/julienXX')
TerminalNotifier.notify('Hello World', :execute => 'say "OMG"')
TerminalNotifier.notify('Hello World', :group => Process.pid)
TerminalNotifier.notify('Hello World', :sender => 'com.apple.Safari')
Expand All @@ -43,6 +43,6 @@ copyright of Apple.

See [LICENSE][LICENSE] for details.

[HOMEPAGE]: https://github.com/alloy/terminal-notifier
[README]: https://github.com/alloy/terminal-notifier/blob/master/README.markdown
[LICENSE]: https://github.com/alloy/terminal-notifier/blob/master/Ruby/LICENSE
[HOMEPAGE]: https://github.com/julienXX/terminal-notifier
[README]: https://github.com/julienXX/terminal-notifier/blob/master/README.markdown
[LICENSE]: https://github.com/julienXX/terminal-notifier/blob/master/Ruby/LICENSE
2 changes: 1 addition & 1 deletion Ruby/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ end
desc 'Fetch latest build from the GitHub releases'
task :update_build do
unless File.exist?(zipfile)
sh "curl -L -O 'https://github.com/alloy/terminal-notifier/archive/#{zipfile}'"
sh "curl -L -O 'https://github.com/julienXX/terminal-notifier/archive/#{zipfile}'"
end

rm_rf 'vendor'
Expand Down
7 changes: 4 additions & 3 deletions Ruby/lib/terminal-notifier.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# coding: utf-8
require 'shellwords'
require 'rbconfig'

Expand Down Expand Up @@ -60,21 +61,21 @@ def notify_result(result, options, always_string = false)
end
end
module_function :notify_result

# Sends a User Notification and returns whether or not it was a success.
#
# The available options are `:title`, `:group`, `:activate`, `:open`,
# `:execute`, `:sender`, and `:sound`. For a description of each option see:
#
# https://github.com/alloy/terminal-notifier/blob/master/README.markdown
# https://github.com/julienXX/terminal-notifier/blob/master/README.markdown
#
# Examples are:
#
# TerminalNotifier.notify('Hello World')
# TerminalNotifier.notify('Hello World', :title => 'Ruby')
# TerminalNotifier.notify('Hello World', :group => Process.pid)
# TerminalNotifier.notify('Hello World', :activate => 'com.apple.Safari')
# TerminalNotifier.notify('Hello World', :open => 'http://twitter.com/alloy')
# TerminalNotifier.notify('Hello World', :open => 'http://twitter.com/julienXX')
# TerminalNotifier.notify('Hello World', :execute => 'say "OMG"')
# TerminalNotifier.notify('Hello World', :sender => 'com.apple.Safari')
# TerminalNotifier.notify('Hello World', :sound => 'default')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<key>IDESourceControlProjectOriginsDictionary</key>
<dict>
<key>9F67DD19109869B0F5A85172DA9B0D3E8F7EF383</key>
<string>github.com:alloy/terminal-notifier.git</string>
<string>github.com:julienXX/terminal-notifier.git</string>
</dict>
<key>IDESourceControlProjectPath</key>
<string>Terminal Notifier.xcodeproj</string>
Expand All @@ -21,7 +21,7 @@
<string>../..</string>
</dict>
<key>IDESourceControlProjectURL</key>
<string>github.com:alloy/terminal-notifier.git</string>
<string>github.com:julienXX/terminal-notifier.git</string>
<key>IDESourceControlProjectVersion</key>
<integer>111</integer>
<key>IDESourceControlProjectWCCIdentifier</key>
Expand Down
2 changes: 1 addition & 1 deletion Terminal Notifier/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ - (void)printHelpBanner;
"Note that in some circumstances the first character of a message has to be escaped in order to be recognized.\n" \
"An example of this is when using an open bracket, which has to be escaped like so: ‘\\[’.\n" \
"\n" \
"For more information see https://github.com/alloy/terminal-notifier.\n",
"For more information see https://github.com/julienXX/terminal-notifier.\n",
appName, appVersion, appName);
}

Expand Down

0 comments on commit ea6733b

Please sign in to comment.