x_do_bindings 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/x_do.gemspec ADDED
@@ -0,0 +1,53 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "x_do_bindings"
3
+ s.version = "0.2.0"
4
+
5
+ s.authors = ["Victor Costan", "Paul Kwiatkowski", "Nick Sinopoli"]
6
+ s.date = "2015-05-27"
7
+ s.description = "Wraps libxdo using ffi, for high performance"
8
+ s.email = "victor@costan.us"
9
+ s.extra_rdoc_files = [
10
+ "LICENSE.txt",
11
+ "README.rdoc"
12
+ ]
13
+ s.files = [
14
+ ".document",
15
+ ".project",
16
+ ".rspec",
17
+ "Gemfile",
18
+ "Gemfile.lock",
19
+ "LICENSE.txt",
20
+ "README.rdoc",
21
+ "Rakefile",
22
+ "VERSION",
23
+ "lib/x_do.rb",
24
+ "lib/x_do/context.rb",
25
+ "lib/x_do/ffi_autogen.rb",
26
+ "lib/x_do/ffi_functions.rb",
27
+ "lib/x_do/ffi_lib.rb",
28
+ "lib/x_do/ffi_lib_ext.rb",
29
+ "lib/x_do/keyboard.rb",
30
+ "lib/x_do/mouse.rb",
31
+ "lib/x_do/window.rb",
32
+ "spec/spec_helper.rb",
33
+ "spec/support/stdlib.rb",
34
+ "spec/x_do/context_spec.rb",
35
+ "spec/x_do/ffi_lib_ext_spec.rb",
36
+ "spec/x_do/keyboard_spec.rb",
37
+ "spec/x_do/mouse_spec.rb",
38
+ "spec/x_do/window_spec.rb",
39
+ "tasks/ffi_codegen.rb",
40
+ "x_do.gemspec"
41
+ ]
42
+ s.homepage = "https://github.com/NSinopoli/x_do"
43
+ s.licenses = ["MIT"]
44
+ s.require_paths = ["lib"]
45
+ s.summary = "Ruby FFI for libxdo (X mouse / keypress injector)"
46
+
47
+ s.add_runtime_dependency 'ffi'
48
+
49
+ s.add_development_dependency 'rdoc'
50
+ s.add_development_dependency 'rspec'
51
+ s.add_development_dependency 'bundler'
52
+ end
53
+
metadata ADDED
@@ -0,0 +1,130 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: x_do_bindings
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Victor Costan
8
+ - Paul Kwiatkowski
9
+ - Nick Sinopoli
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2015-05-27 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: ffi
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '0'
29
+ - !ruby/object:Gem::Dependency
30
+ name: rdoc
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ type: :development
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ - !ruby/object:Gem::Dependency
44
+ name: rspec
45
+ requirement: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ type: :development
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ - !ruby/object:Gem::Dependency
58
+ name: bundler
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ type: :development
65
+ prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ description: Wraps libxdo using ffi, for high performance
72
+ email: victor@costan.us
73
+ executables: []
74
+ extensions: []
75
+ extra_rdoc_files:
76
+ - LICENSE.txt
77
+ - README.rdoc
78
+ files:
79
+ - ".document"
80
+ - ".project"
81
+ - ".rspec"
82
+ - Gemfile
83
+ - Gemfile.lock
84
+ - LICENSE.txt
85
+ - README.rdoc
86
+ - Rakefile
87
+ - VERSION
88
+ - lib/x_do.rb
89
+ - lib/x_do/context.rb
90
+ - lib/x_do/ffi_autogen.rb
91
+ - lib/x_do/ffi_functions.rb
92
+ - lib/x_do/ffi_lib.rb
93
+ - lib/x_do/ffi_lib_ext.rb
94
+ - lib/x_do/keyboard.rb
95
+ - lib/x_do/mouse.rb
96
+ - lib/x_do/window.rb
97
+ - spec/spec_helper.rb
98
+ - spec/support/stdlib.rb
99
+ - spec/x_do/context_spec.rb
100
+ - spec/x_do/ffi_lib_ext_spec.rb
101
+ - spec/x_do/keyboard_spec.rb
102
+ - spec/x_do/mouse_spec.rb
103
+ - spec/x_do/window_spec.rb
104
+ - tasks/ffi_codegen.rb
105
+ - x_do.gemspec
106
+ homepage: https://github.com/NSinopoli/x_do
107
+ licenses:
108
+ - MIT
109
+ metadata: {}
110
+ post_install_message:
111
+ rdoc_options: []
112
+ require_paths:
113
+ - lib
114
+ required_ruby_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ required_rubygems_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ requirements: []
125
+ rubyforge_project:
126
+ rubygems_version: 2.4.5
127
+ signing_key:
128
+ specification_version: 4
129
+ summary: Ruby FFI for libxdo (X mouse / keypress injector)
130
+ test_files: []