rjoystick 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.
- checksums.yaml +7 -0
- data/rjoystick.gemspec +13 -24
- metadata +17 -20
- data/Manifest +0 -8
- data/Rakefile +0 -12
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 1aeae48c3d9055f332ec1ff1df72b153a0f90fd5
|
|
4
|
+
data.tar.gz: 119411f7d74bb8750babd2833c80766fed09acff
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 43e2b4169f2a4b27cba0bd3959d8f136ca09bdee39554893709a1365da8fd695b304bc09b407ffa1605deb34410672446e92f05e0270ce275100cfcca400c7d1
|
|
7
|
+
data.tar.gz: 618c940d745bff95fbce25f096cbe52874fc14adcf8e2a4c45674297ea84170f58baccacadf4813e4524250f7e340e236ca94a6079ee9106322a69f025e6a140
|
data/rjoystick.gemspec
CHANGED
|
@@ -1,30 +1,19 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
|
-
s.name =
|
|
5
|
-
s.version =
|
|
4
|
+
s.name = 'rjoystick'
|
|
5
|
+
s.version = '0.1.2'
|
|
6
6
|
|
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
7
|
s.authors = ['Claudio Fiorini', 'Christian Vervoorts', 'John Anderson']
|
|
9
|
-
s.date =
|
|
10
|
-
s.description =
|
|
11
|
-
s.
|
|
12
|
-
s.
|
|
13
|
-
s.
|
|
14
|
-
s.
|
|
15
|
-
s.
|
|
16
|
-
s.
|
|
17
|
-
s.
|
|
18
|
-
s.
|
|
19
|
-
s.
|
|
20
|
-
s.summary = %q{Ruby binding for linux kernel joystick}
|
|
21
|
-
|
|
22
|
-
if s.respond_to? :specification_version then
|
|
23
|
-
s.specification_version = 3
|
|
24
|
-
|
|
25
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
26
|
-
else
|
|
27
|
-
end
|
|
28
|
-
else
|
|
29
|
-
end
|
|
8
|
+
s.date = '2015-04-16'
|
|
9
|
+
s.description = "Ruby binding for linux kernel joystick"
|
|
10
|
+
s.summary = "Ruby binding for linux kernel joystick"
|
|
11
|
+
s.email = 'claudio.fiorini@gmail.com'
|
|
12
|
+
s.homepage = 'https://github.com/cfiorini/rjoystick'
|
|
13
|
+
s.extensions = ["ext/extconf.rb"]
|
|
14
|
+
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README", "ext/extconf.rb", "ext/rjoystick.c"]
|
|
15
|
+
s.files = ["CHANGELOG", "LICENSE", "README", "ext/extconf.rb", "ext/rjoystick.c", "rjoystick.rb", "rjoystick.gemspec"]
|
|
16
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rjoystick", "--main", "README"]
|
|
17
|
+
s.require_paths = ["ext"]
|
|
18
|
+
s.license = "GPL3"
|
|
30
19
|
end
|
metadata
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rjoystick
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.1.2
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Claudio Fiorini
|
|
@@ -11,7 +10,7 @@ authors:
|
|
|
11
10
|
autorequire:
|
|
12
11
|
bindir: bin
|
|
13
12
|
cert_chain: []
|
|
14
|
-
date:
|
|
13
|
+
date: 2015-04-16 00:00:00.000000000 Z
|
|
15
14
|
dependencies: []
|
|
16
15
|
description: Ruby binding for linux kernel joystick
|
|
17
16
|
email: claudio.fiorini@gmail.com
|
|
@@ -27,41 +26,39 @@ extra_rdoc_files:
|
|
|
27
26
|
files:
|
|
28
27
|
- CHANGELOG
|
|
29
28
|
- LICENSE
|
|
30
|
-
- Manifest
|
|
31
29
|
- README
|
|
32
|
-
- Rakefile
|
|
33
30
|
- ext/extconf.rb
|
|
34
31
|
- ext/rjoystick.c
|
|
35
|
-
- rjoystick.rb
|
|
36
32
|
- rjoystick.gemspec
|
|
37
|
-
|
|
38
|
-
|
|
33
|
+
- rjoystick.rb
|
|
34
|
+
homepage: https://github.com/cfiorini/rjoystick
|
|
35
|
+
licenses:
|
|
36
|
+
- GPL3
|
|
37
|
+
metadata: {}
|
|
39
38
|
post_install_message:
|
|
40
39
|
rdoc_options:
|
|
41
|
-
- --line-numbers
|
|
42
|
-
- --inline-source
|
|
43
|
-
- --title
|
|
40
|
+
- "--line-numbers"
|
|
41
|
+
- "--inline-source"
|
|
42
|
+
- "--title"
|
|
44
43
|
- Rjoystick
|
|
45
|
-
- --main
|
|
44
|
+
- "--main"
|
|
46
45
|
- README
|
|
47
46
|
require_paths:
|
|
48
47
|
- ext
|
|
49
48
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
|
-
none: false
|
|
51
49
|
requirements:
|
|
52
|
-
- -
|
|
50
|
+
- - ">="
|
|
53
51
|
- !ruby/object:Gem::Version
|
|
54
52
|
version: '0'
|
|
55
53
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
|
-
none: false
|
|
57
54
|
requirements:
|
|
58
|
-
- -
|
|
55
|
+
- - ">="
|
|
59
56
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: '
|
|
57
|
+
version: '0'
|
|
61
58
|
requirements: []
|
|
62
|
-
rubyforge_project:
|
|
63
|
-
rubygems_version:
|
|
59
|
+
rubyforge_project:
|
|
60
|
+
rubygems_version: 2.4.5
|
|
64
61
|
signing_key:
|
|
65
|
-
specification_version:
|
|
62
|
+
specification_version: 4
|
|
66
63
|
summary: Ruby binding for linux kernel joystick
|
|
67
64
|
test_files: []
|
data/Manifest
DELETED
data/Rakefile
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
require 'echoe'
|
|
2
|
-
|
|
3
|
-
Echoe.new('rjoystick', '0.1') do |p|
|
|
4
|
-
p.description = "Ruby binding for linux kernel joystick"
|
|
5
|
-
p.url = "https://github.com/cfiorini/rjoystick"
|
|
6
|
-
p.author = "Claudio Fiorini"
|
|
7
|
-
p.email = "claudio.fiorini@gmail.com"
|
|
8
|
-
p.ignore_pattern = ["tmp/*", "script/*"]
|
|
9
|
-
p.development_dependencies = []
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
|