rbhex-core 1.0.0 → 1.1.0.alpha1
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.
- checksums.yaml +4 -4
- data/README.md +12 -0
- data/lib/rbhex/core/version.rb +1 -1
- data/lib/{rbhex.rb → rbhex/core.rb} +0 -0
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84d5c976599428a8ad8031b423100b9403805ed2
|
|
4
|
+
data.tar.gz: 213cf9ced7207d9a5d652a5fe9242914f65eba4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9c0b27813ed9472df1a7947973e49c74c5a4ed41709049997104e04ce89b6ce10b95eec36707e4e007e3214d021ce4783c32dce369a91c516080bda4c157e75
|
|
7
|
+
data.tar.gz: 1404bfe5e857f0d29019137ccc16d1576deacf4a28e6d6d6e564f9d7aba5effd8501f8876d816c3b4c42e74787541d0a0f2268c7c41c8231aee3a33eff673061
|
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# rbhex-core
|
|
2
2
|
|
|
3
|
+
[](http://badge.fury.io/rb/rbhex-core)
|
|
4
|
+
|
|
3
5
|
Contains core widgets and infrastructure of rbhex ncurses toolkit. rbhex helps to easily build
|
|
4
6
|
ncurses applications for text terminals.
|
|
5
7
|
|
|
@@ -42,3 +44,13 @@ codebase.
|
|
|
42
44
|
|
|
43
45
|
This project is a continuation/fork of [rkumar](https://github.com/rkumar)'s [rbcurse](https://github.com/rkumar/rbcurse-core).
|
|
44
46
|
rbcurse is no longer maintained as of March 2014.
|
|
47
|
+
|
|
48
|
+
## Contributing
|
|
49
|
+
|
|
50
|
+
1. Fork it ( https://github.com/ChrisArcand/rbhex-core/fork )
|
|
51
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
52
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
53
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
54
|
+
5. Create a new Pull Request
|
|
55
|
+
|
|
56
|
+
[1]: https://github.com/ChrisArcand/rbhex-core
|
data/lib/rbhex/core/version.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbhex-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.1.0.alpha1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Arcand
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-
|
|
12
|
+
date: 2014-10-02 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: ffi-ncurses
|
|
@@ -80,7 +80,7 @@ files:
|
|
|
80
80
|
- examples/testree.rb
|
|
81
81
|
- examples/testwsshortcuts.rb
|
|
82
82
|
- examples/testwsshortcuts2.rb
|
|
83
|
-
- lib/rbhex.rb
|
|
83
|
+
- lib/rbhex/core.rb
|
|
84
84
|
- lib/rbhex/core/docs/index.txt
|
|
85
85
|
- lib/rbhex/core/include/action.rb
|
|
86
86
|
- lib/rbhex/core/include/actionmanager.rb
|
|
@@ -160,9 +160,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
160
160
|
version: '0'
|
|
161
161
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
162
162
|
requirements:
|
|
163
|
-
- - "
|
|
163
|
+
- - ">"
|
|
164
164
|
- !ruby/object:Gem::Version
|
|
165
|
-
version:
|
|
165
|
+
version: 1.3.1
|
|
166
166
|
requirements: []
|
|
167
167
|
rubyforge_project:
|
|
168
168
|
rubygems_version: 2.2.2
|