remoteling-ruby 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +2 -2
- data/lib/remoteling.rb +1 -2
- data/remoteling-ruby.gemspec +1 -1
- data/test/remoteling_test.rb +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
@@ -2,12 +2,12 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('remoteling-ruby', '0.0.
|
5
|
+
Echoe.new('remoteling-ruby', '0.0.5') do |p|
|
6
6
|
p.description = "Ruby gem for working with Remoteling (http://remoteling.com)"
|
7
7
|
p.url = "http://github.com/adrianpike/remoteling-ruby"
|
8
8
|
p.author = "Adrian Pike"
|
9
9
|
p.email = "adrian@pikeapps.com"
|
10
|
-
p.ignore_pattern = ["tmp/*", "script/*"]
|
10
|
+
p.ignore_pattern = ["tmp/*", "script/*"]
|
11
11
|
p.development_dependencies = []
|
12
12
|
end
|
13
13
|
|
data/lib/remoteling.rb
CHANGED
@@ -10,8 +10,7 @@ class Remoteling
|
|
10
10
|
|
11
11
|
CONFIG = {
|
12
12
|
:timeout => 2,
|
13
|
-
|
14
|
-
:remoteling_host => 'http://localhost:3000/'
|
13
|
+
:remoteling_host => 'http://remoteling.com/'
|
15
14
|
}
|
16
15
|
|
17
16
|
# we could use cattr_accessor if we had active_support, but its probably not worth pulling it in just for that
|
data/remoteling-ruby.gemspec
CHANGED
data/test/remoteling_test.rb
CHANGED
@@ -3,7 +3,7 @@ require 'shoulda'
|
|
3
3
|
require 'lib/remoteling'
|
4
4
|
|
5
5
|
class RemotelingTest < Test::Unit::TestCase
|
6
|
-
TESTING_KEY = '
|
6
|
+
TESTING_KEY = 'XXX' # you'll want to set this!
|
7
7
|
|
8
8
|
context 'a remoteling client with default creds stored in the class' do
|
9
9
|
setup do
|