dream_cheeky 0.0.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.
@@ -0,0 +1,3 @@
1
+ module DreamCheeky
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,9 @@
1
+ require 'dream_cheeky'
2
+
3
+ describe DreamCheeky::BigRedButton do
4
+
5
+ it "should raise an error when instantiated if it can't find a BigRedButton device" do
6
+ pending
7
+ expect { subject }.to raise_error
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'dream_cheeky'
2
+
3
+ describe DreamCheeky do
4
+
5
+ it "should contain a BigRedButton class" do
6
+ expect { DreamCheeky::BigRedButton.new }.to_not raise_error(NameError)
7
+ end
8
+
9
+ end
metadata ADDED
@@ -0,0 +1,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dream_cheeky
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Derrick Spell
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-03-21 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspec
16
+ requirement: &70258907999700 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *70258907999700
25
+ description: Ruby Inteface to Dream Cheeky(TM) USB Devices
26
+ email:
27
+ - derrick.spell@gmail.com
28
+ executables: []
29
+ extensions:
30
+ - ext/dream_cheeky/extconf.rb
31
+ extra_rdoc_files: []
32
+ files:
33
+ - Gemfile
34
+ - README.md
35
+ - Rakefile
36
+ - dream_cheeky.gemspec
37
+ - ext/dream_cheeky/dream_cheeky.c
38
+ - ext/dream_cheeky/dream_cheeky.h
39
+ - ext/dream_cheeky/dream_cheeky_big_red_button.c
40
+ - ext/dream_cheeky/dream_cheeky_big_red_button.h
41
+ - ext/dream_cheeky/extconf.rb
42
+ - ext/dream_cheeky/hidapi-mac.c
43
+ - ext/dream_cheeky/hidapi.h
44
+ - lib/dream_cheeky.rb
45
+ - lib/dream_cheeky/big_red_button.rb
46
+ - lib/dream_cheeky/version.rb
47
+ - spec/dream_cheeky/big_red_button_spec.rb
48
+ - spec/dream_cheeky_spec.rb
49
+ homepage: ''
50
+ licenses: []
51
+ post_install_message:
52
+ rdoc_options: []
53
+ require_paths:
54
+ - lib
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ! '>='
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ! '>='
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ requirements: []
68
+ rubyforge_project: dream_cheeky
69
+ rubygems_version: 1.8.11
70
+ signing_key:
71
+ specification_version: 3
72
+ summary: Ruby Inteface to Dream Cheeky(TM) USB Devices
73
+ test_files:
74
+ - spec/dream_cheeky/big_red_button_spec.rb
75
+ - spec/dream_cheeky_spec.rb