blinkenstein 0.1.3 → 0.1.4
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.
- data/blinkenstein.gemspec +24 -0
- data/lib/blinkenstein/version.rb +1 -1
- metadata +2 -1
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'blinkenstein/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "blinkenstein"
|
8
|
+
gem.version = Blinkenstein::VERSION
|
9
|
+
gem.authors = ["Michael Schmidt"]
|
10
|
+
gem.email = ["michael.j.schmidt@gmail.com"]
|
11
|
+
gem.description = %q{Blink(1) Monitoring Thinggy}
|
12
|
+
gem.summary = %q{Currently monitors Eve Online's skill queue and messes with Blink(1)'}
|
13
|
+
gem.homepage = ""
|
14
|
+
|
15
|
+
gem.files = Dir['Gemfile', 'Gemfile.lock', 'LICENSE.txt', 'README.md', 'lib/**/*', 'bin/blinkenstein', 'blinkenstein.gemspec']
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
|
20
|
+
gem.add_dependency('celluloid')
|
21
|
+
gem.add_dependency('rb-blink1')
|
22
|
+
gem.add_dependency('httparty')
|
23
|
+
gem.add_dependency('nokogiri')
|
24
|
+
end
|
data/lib/blinkenstein/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: blinkenstein
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
5
|
+
version: 0.1.4
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Michael Schmidt
|
@@ -93,6 +93,7 @@ files:
|
|
93
93
|
- lib/blinkenstein/version.rb
|
94
94
|
- lib/blinkenstein.rb
|
95
95
|
- bin/blinkenstein
|
96
|
+
- blinkenstein.gemspec
|
96
97
|
homepage: ''
|
97
98
|
licenses: []
|
98
99
|
post_install_message:
|