redminer 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/redminer/base.rb +3 -2
- data/redminer.gemspec +1 -1
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/lib/redminer/base.rb
CHANGED
@@ -2,8 +2,9 @@ module Redminer
|
|
2
2
|
class Base
|
3
3
|
attr_accessor :server, :access_key
|
4
4
|
|
5
|
-
def initialize(host,
|
6
|
-
|
5
|
+
def initialize(host, access_key, options = {})
|
6
|
+
options = {:port => 80}.merge(options)
|
7
|
+
@server = Net::HTTP.new(host, options[:port])
|
7
8
|
@access_key = access_key
|
8
9
|
end
|
9
10
|
|
data/redminer.gemspec
CHANGED
metadata
CHANGED