rubysketch 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a4fb1ce0ec59953e88fa85ffcacf60abf3773d01e7e628d02e6e5d273e5356af
4
- data.tar.gz: d99ec6f101c8456241eddf75a0e9ca047afa10c4190c41ee8389e16b2b5c3f53
3
+ metadata.gz: b1adb7b3e52738c52a6517b08c86f02661f67b19221c9931d642e7405e534d7c
4
+ data.tar.gz: 35f3106d499094aca640809034f5fd7eaed961b32744b218ac4a1a575c7d520b
5
5
  SHA512:
6
- metadata.gz: 66d7c30df9e46e6c282226b1bfedc5a79f7121fcfa4525753de7a1aa2e1735a701ac3ce0caf6af298727f9074355a7f497bdec7a8baef6d00b05a2f246b2fa0f
7
- data.tar.gz: cfb0138fb530d661d7a0a0f2f6e4b8dd9432719322967890b0117bb4f53c132d5c5e3e720ed1920defeea4f7ab075d645831505d396e2f1fb22df950882175da
6
+ metadata.gz: 24ea4d3e18e6278bb2692ade55b0a2380cadfd98c74aa4e3a0327b9893baf2775a1ad695dea4657035aaa6a35ce66093211e0fa738a920544727f36fa749bcf4
7
+ data.tar.gz: 67880974a16f0f7e3484288d1a8de5a57c60cc1231175e2f31c9a08172ec21244027374bdb67dd4d24c110c13e3bdc9962013ff0ba9bca01536164971ed0990c
data/.gitignore CHANGED
@@ -1 +1,6 @@
1
+ *.gem
1
2
  *~
3
+
4
+ .yardoc
5
+ .DS_Store
6
+ doc
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 xord.org
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/Rakefile CHANGED
@@ -16,6 +16,8 @@ require 'rubysketch/module'
16
16
 
17
17
  MODULES = [Xot, Rucy, Rays, Reflex, RubySketch]
18
18
 
19
+ ENV['RDOC'] = 'yardoc --no-private'
20
+
19
21
  generate_documents
20
22
  build_ruby_gem
21
23
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -10,6 +10,7 @@ module RubySketch
10
10
  @shader = Reflex::Shader.new glsl
11
11
  end
12
12
 
13
+ # @private
13
14
  def on_start__ (window)
14
15
  start = Time.now.to_f
15
16
 
@@ -51,6 +51,7 @@ module RubySketch
51
51
  angleMode RADIANS
52
52
  end
53
53
 
54
+ # @private
54
55
  def on_start__ (window)
55
56
  @window__ = window
56
57
  @painter__ = window.canvas.painter
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubysketch
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
  - xordog
@@ -102,6 +102,7 @@ extensions:
102
102
  extra_rdoc_files: []
103
103
  files:
104
104
  - ".gitignore"
105
+ - LICENSE
105
106
  - README.md
106
107
  - Rakefile
107
108
  - VERSION