rbhex-layouts 1.1.0.alpha4

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,5 @@
1
+ module Rbhex
2
+ module Layouts
3
+ VERSION = '1.1.0.alpha4'
4
+ end
5
+ end
@@ -0,0 +1 @@
1
+ require 'rbhex/layouts/version'
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rbhex/layouts/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rbhex-layouts"
8
+ spec.version = Rbhex::Layouts::VERSION
9
+ spec.authors = ["Chris Arcand"]
10
+ spec.email = ["chris@chrisarcand.com"]
11
+ spec.description = "Ruby curses/ncurses templates for easy application development on text terminals"
12
+ spec.summary = "Ruby Ncurses Toolkit pre-made templates"
13
+ spec.homepage = "https://github.com/ChrisArcand/rbhex-layouts"
14
+ spec.license = "The Ruby License"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ if Rbhex::Layouts::VERSION =~ /[a-zA-Z]+/
22
+ spec.add_dependency "rbhex-core", "= #{Rbhex::Layouts::VERSION}"
23
+ else
24
+ spec.add_dependency "rbhex-core", "~> #{Rbhex::Layouts::VERSION.split('.')[0..1].concat(['0']).join('.')}"
25
+ end
26
+ end
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rbhex-layouts
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.0.alpha4
5
+ platform: ruby
6
+ authors:
7
+ - Chris Arcand
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-10-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rbhex-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 1.1.0.alpha4
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 1.1.0.alpha4
27
+ description: Ruby curses/ncurses templates for easy application development on text
28
+ terminals
29
+ email:
30
+ - chris@chrisarcand.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - .gitignore
36
+ - .ruby-gemset
37
+ - .ruby-version
38
+ - LICENSE
39
+ - README.md
40
+ - lib/rbhex/layouts.rb
41
+ - lib/rbhex/layouts/monitor.rb
42
+ - lib/rbhex/layouts/version.rb
43
+ - rbhex-layouts.gemspec
44
+ homepage: https://github.com/ChrisArcand/rbhex-layouts
45
+ licenses:
46
+ - The Ruby License
47
+ metadata: {}
48
+ post_install_message:
49
+ rdoc_options: []
50
+ require_paths:
51
+ - lib
52
+ required_ruby_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - '>='
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>'
60
+ - !ruby/object:Gem::Version
61
+ version: 1.3.1
62
+ requirements: []
63
+ rubyforge_project:
64
+ rubygems_version: 2.2.2
65
+ signing_key:
66
+ specification_version: 4
67
+ summary: Ruby Ncurses Toolkit pre-made templates
68
+ test_files: []