Skip to content

Commit

Permalink
gem stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
kballenegger committed Dec 13, 2012
1 parent 80e901b commit 9390aa3
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
@@ -0,0 +1,17 @@
*.gem
*.rbc
.bundle
.config
.yardoc
Gemfile.lock
InstalledFiles
_yardoc
coverage
doc/
lib/bundler/man
pkg
rdoc
spec/reports
test/tmp
test/version_tmp
tmp
1 change: 1 addition & 0 deletions Rakefile
@@ -0,0 +1 @@
require 'bundler/gem_tasks'
19 changes: 19 additions & 0 deletions hue.gemspec
@@ -0,0 +1,19 @@
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hue/version'

Gem::Specification.new do |gem|
gem.name = 'ruby-hue'
gem.version = .::VERSION
gem.authors = ['Kenneth Ballenegger']
gem.email = ['kenneth@ballenegger.com']
gem.description = %q{Control Philips Hue}
gem.summary = %q{Control Philips Hue}
gem.homepage = ""

gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
end
3 changes: 3 additions & 0 deletions lib/hue/version.rb
@@ -0,0 +1,3 @@
class Hue
VERSION = '0.0.1'
end

0 comments on commit 9390aa3

Please sign in to comment.