curses-geometry 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 965516aafcb4e42f99f9a7f6bb54509944c5016d
4
- data.tar.gz: 9f45d7ff2ab5b1aa86ef94c59169ffcd567751cb
3
+ metadata.gz: e332e05fcca926ded3e8c592e3929ea229eb0bb7
4
+ data.tar.gz: 1ab21ad2312f9e993a8122176ca20af6fa5ff6e3
5
5
  SHA512:
6
- metadata.gz: adcf6de236c379c185bf5a721add40433a8b14237f117c19ea37d02749a3b05fa2a192a24209cfd434001cdcfbb5d312a0398b49d6b2e584abb53c16358e0cd1
7
- data.tar.gz: a9f113b418a5982e7103a46a3163bc284b236f59f51583dcb3be547202567717afd872e71b2b646517955c4ac1f4c2adc4b092adeb39a7a0118105b49af7186a
6
+ metadata.gz: 3e6a08fbc1c50d45e25653de2756464caeee005c4ab22f2b0d73835eec37e1820be44947448a8e1418d56cfecc3bfcd97a7afdbeec7b44a1c10c2c56c84e6c9c
7
+ data.tar.gz: f4f1d784821245e24e64e88b6f8ec5a2a04471ef01beb0858fd4bbe6e7da40d6ebb61d06277e2327c006414f1295f3c8421d8cd5771beb0364a0f1d1db0e560b
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.email = ["sojastar07@gmail.com"]
10
10
 
11
11
  spec.summary = %q{Adds some basic graphic primitives to the Curses module.}
12
- spec.description = %q{Adds some basic graphic primitives to the Curses module:\n- single glyphs\n- lines and antialiased lines\n- rectangles\n- convex polygons}
12
+ spec.description = %q{Adds some basic graphic primitives to the Curses module. It can draw single glyphs, lines and antialiased lines, frames and filled rectangles, and arbitrary convex polygons.}
13
13
  spec.homepage = "https://rubygems.org/gems/curses-geometry"
14
14
  spec.license = "MIT"
15
15
 
@@ -36,5 +36,5 @@ Gem::Specification.new do |spec|
36
36
 
37
37
  spec.add_development_dependency "bundler", "~> 1.16"
38
38
  spec.add_development_dependency "rake", "~> 10.0"
39
- spec.add_runtime_dependency "curses"
39
+ spec.add_runtime_dependency "curses", "~> 1.2.4"
40
40
  end
@@ -1,5 +1,5 @@
1
1
  module Curses
2
2
  module Geometry
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: curses-geometry
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julien Jassaud
@@ -42,18 +42,19 @@ dependencies:
42
42
  name: curses
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
47
+ version: 1.2.4
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
55
- description: Adds some basic graphic primitives to the Curses module:\n- single glyphs\n-
56
- lines and antialiased lines\n- rectangles\n- convex polygons
54
+ version: 1.2.4
55
+ description: Adds some basic graphic primitives to the Curses module. It can draw
56
+ single glyphs, lines and antialiased lines, frames and filled rectangles, and arbitrary
57
+ convex polygons.
57
58
  email:
58
59
  - sojastar07@gmail.com
59
60
  executables: []