cloudkick 0.1.1 → 0.1.2

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
data/cloudkick.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{cloudkick}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Cloudkick"]
data/doc/example.rb CHANGED
@@ -1,3 +1,4 @@
1
+ require 'rubygems'
1
2
  require 'cloudkick'
2
3
 
3
4
  CONSUMER_KEY = 'ENTER_KEY'
data/lib/cloudkick.rb CHANGED
@@ -9,8 +9,8 @@
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
11
11
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
14
  require 'rubygems'
15
15
  require 'crack'
16
16
  require 'oauth'
@@ -9,12 +9,12 @@
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
11
11
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
14
  module Cloudkick
15
15
  class Base
16
16
 
17
- BASE_URL = 'https://cloudkick.com'
17
+ BASE_URL = 'https://api.cloudkick.com'
18
18
 
19
19
  def initialize(consumer_key, consumer_secret)
20
20
  @@key = consumer_key
@@ -9,8 +9,8 @@
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
11
11
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
14
  module Cloudkick
15
15
  class Node < Base
16
16
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudkick
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cloudkick