rbtelldus 0.1.0 → 0.1.1
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.
- checksums.yaml +8 -8
- data/Rakefile +2 -2
- data/ext/{telldus → rbtelldus}/.gitignore +0 -0
- data/ext/{telldus → rbtelldus}/extconf.rb +0 -0
- data/ext/{telldus → rbtelldus}/rbtelldus.c +0 -0
- data/lib/rbtelldus.rb +1 -1
- data/rbtelldus.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZjM0MGExMzkyNTk4NDFkYWM3MDBiZmI1MmVhOTZmOWI5YTAxOGY3YQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OWRmNGRmMjIwZDI3Y2MyNDIwZGQ0YzA3YjRiNTY5YmVjZjc3OGM4Yg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NmExMWUzMjU0OTAyYzY0YmYzMTMwY2E3NDNjYjEzZjdkMTFiMTI3NWM5YzE1
|
10
|
+
NDkyNDBjNDgyZTljMDYyMDc4ZDc3MTAzOGNlMDVkNWE0ZWRiZDkxYmM4MGJj
|
11
|
+
MmI5MmVjZTVjZTI2NjMzZDBjNDQ5YmNhMDZlNDMzM2YxYTk2MjY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTVlZTQ5NDk3ZWI5Y2I1ZGQwZjk2NmRiYzdhMmYzZjkwNjhiNmIwMWNhY2Q1
|
14
|
+
ZjdjZTIyYTU4OGRhMDZiOGVlMjQzOGI1NjkzZTc1YTY0N2Q0ZDI1N2E1NDE3
|
15
|
+
MTM5ZjBkMWIwYmIxMTE2MTFkMWJiMDEwMWExZmYxMGVjNjQxYzQ=
|
data/Rakefile
CHANGED
@@ -22,7 +22,7 @@ namespace :compile do
|
|
22
22
|
|
23
23
|
desc 'build rtelldus for testing'
|
24
24
|
task 'telldus:test' => 'telldus_core' do
|
25
|
-
Dir.chdir('ext/
|
25
|
+
Dir.chdir('ext/rbtelldus') do
|
26
26
|
run "ruby extconf.rb --with-telldus-dir=../../spec/mocks/telldus-mock"
|
27
27
|
run "make"
|
28
28
|
end
|
@@ -30,7 +30,7 @@ namespace :compile do
|
|
30
30
|
|
31
31
|
desc 'build telldus'
|
32
32
|
task :telldus do
|
33
|
-
Dir.chdir('lib/
|
33
|
+
Dir.chdir('lib/rbtelldus/ext') do
|
34
34
|
run "ruby extconf.rb"
|
35
35
|
run "make"
|
36
36
|
end
|
File without changes
|
File without changes
|
File without changes
|
data/lib/rbtelldus.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
require '
|
1
|
+
require 'rbtelldus/rbtelldus.so'
|
data/rbtelldus.gemspec
CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
|
-
spec.extensions = ["ext/
|
21
|
+
spec.extensions = ["ext/rbtelldus/extconf.rb"]
|
22
22
|
spec.add_development_dependency "bundler", "~> 1.7"
|
23
23
|
spec.add_development_dependency "rake", "~> 10.0"
|
24
24
|
spec.add_development_dependency "rspec"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbtelldus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patrik Pettersson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-05-
|
11
|
+
date: 2015-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -57,7 +57,7 @@ email:
|
|
57
57
|
- pettersson.pa@gmail.com
|
58
58
|
executables: []
|
59
59
|
extensions:
|
60
|
-
- ext/
|
60
|
+
- ext/rbtelldus/extconf.rb
|
61
61
|
extra_rdoc_files: []
|
62
62
|
files:
|
63
63
|
- .gitignore
|
@@ -67,9 +67,9 @@ files:
|
|
67
67
|
- LICENSE.txt
|
68
68
|
- README.md
|
69
69
|
- Rakefile
|
70
|
-
- ext/
|
71
|
-
- ext/
|
72
|
-
- ext/
|
70
|
+
- ext/rbtelldus/.gitignore
|
71
|
+
- ext/rbtelldus/extconf.rb
|
72
|
+
- ext/rbtelldus/rbtelldus.c
|
73
73
|
- lib/rbtelldus.rb
|
74
74
|
- lib/rbtelldus/.gitkeep
|
75
75
|
- rbtelldus.gemspec
|