Skip to content

Commit

Permalink
Update NMA url
Browse files Browse the repository at this point in the history
NMA has it's own domain on www.notifymyandroid.com now (and most pages on
nma.usk.bz redirect there, though not all).
  • Loading branch information
Nick Groenen committed Feb 17, 2013
1 parent cbd3329 commit eb22a86
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.rdoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= ruby-notify-my-android

Send notifications to Android devices via the Notify My Android API. Details about the API are available at https://nma.usk.bz/api.php .
Send notifications to Android devices via the Notify My Android API. Details about the API are available at https://www.notifymyandroid.com/api.php .

== Installation

Expand Down Expand Up @@ -69,7 +69,7 @@ Note that the @code signifies the success or failure of the HTTP call, not the N

== Contributing to ruby-notify-my-android

* Familiarize yourself with the documentation at https://nma.usk.bz/api.php
* Familiarize yourself with the documentation at https://www.notifymyandroid.com/api.php
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
* Fork the project
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Jeweler::Tasks.new do |gem|
gem.homepage = "http://github.com/slashk/ruby-notify-my-android"
gem.license = "MIT"
gem.summary = %Q{Send notifications to Android devices via the Notify My Android API}
gem.description = %Q{Send notifications to Android devices via the Notify My Android API. Details about the API are available at https://nma.usk.bz/api.php .}
gem.description = %Q{Send notifications to Android devices via the Notify My Android API. Details about the API are available at https://www.notifymyandroid.com/api.php .}
gem.email = "ken.pepple@rabbityard.com"
gem.authors = ["Ken Pepple"]
gem.executables = [ 'notify-my-android' ]
Expand Down
2 changes: 1 addition & 1 deletion lib/ruby-notify-my-android/request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Request
include Singleton

def initialize
@url = "https://nma.usk.bz/publicapi"
@url = "https://www.notifymyandroid.com/publicapi"
end

## Make the actual call to the api
Expand Down
2 changes: 1 addition & 1 deletion ruby-notify-my-android.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |s|
s.authors = ["Ken Pepple"]
s.date = %q{2011-04-21}
s.default_executable = %q{notify-my-android}
s.description = %q{Send notifications to Android devices via the Notify My Android API. Details about the API are available at https://nma.usk.bz/api.php .}
s.description = %q{Send notifications to Android devices via the Notify My Android API. Details about the API are available at https://www.notifymyandroid.com/api.php .}
s.email = %q{ken.pepple@rabbityard.com}
s.executables = ["notify-my-android"]
s.extra_rdoc_files = [
Expand Down
2 changes: 1 addition & 1 deletion test/test_ruby-notify-my-android.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class TestRubyNotifyMyAndroid < Test::Unit::TestCase

def setup
@api_endpoint = "https://nma.usk.bz/publicapi/"
@api_endpoint = "https://www.notifymyandroid.com/publicapi/"
@good_apikey = "9d0538ab7b52360e906e0e766f34501b69edde92fe3409e9"
@bad_apikey = "9d0538ab7b52360e906e0e766f34501b69edde92fe3409e0"
# verify endpoints and stubs
Expand Down

0 comments on commit eb22a86

Please sign in to comment.