wavefront 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
  SHA1:
3
- metadata.gz: f016cf0604451c59b9bb8ab37f45e7325c41f37a
4
- data.tar.gz: 3963654f752bb5c51d291135edaa9799dbde6286
3
+ metadata.gz: 1abfac6a3055386991b773c7a6ed97aa9cf27da5
4
+ data.tar.gz: 6f4695eb37e5c8e6d81a60479499490ffe0fe229
5
5
  SHA512:
6
- metadata.gz: 3e5711346ed8a11adac3a0844874132d596e038bf7328549d1a52516145f94b35753c5a81f68840fed0278600f04924f8dc83a47e566c5e1f3f80d66b6bcb3c0
7
- data.tar.gz: 50b0cb2b9d3d3ecb0d4a5bc5f8a5f056d35708dd6cc458ffe776ad2e5b0c6c9d8e45c3062aba9ad452fa7c8d7f702e2e9231ac67e4db8ac3d56eb610b5699da9
6
+ metadata.gz: 8f959255768d603f2873937825ddea431e2c3c568e7fdd19861a333f2a147d51a27dba32f32687e419ce1d1368cf6050e6f14a17b140974fc4a59421a44d3d5d
7
+ data.tar.gz: 9b10d8bdff882d9870db8046db05f0e266dc42b18e23f13d4f72d90bb79b996f0d844f0cd757df48bdf8990cad2c76dc49e1e14d28f327770a8d98b59b0f2db9
@@ -1,9 +1,9 @@
1
1
  require "wavefront/version"
2
- require "vec3"
3
- require "triangle"
4
- require "vertex"
5
- require "smoothing_group"
6
- require "group"
7
- require "wavefront_object"
8
- require "wavefront_file"
2
+ require "wavefront/vec3"
3
+ require "wavefront/triangle"
4
+ require "wavefront/vertex"
5
+ require "wavefront/smoothing_group"
6
+ require "wavefront/group"
7
+ require "wavefront/wavefront_object"
8
+ require "wavefront/wavefront_file"
9
9
 
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module Wavefront
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
File without changes
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'wavefront'
4
+ require 'wavefront/version'
5
5
 
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = "wavefront"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wavefront
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
  - Misha Conway
@@ -22,15 +22,15 @@ files:
22
22
  - LICENSE.txt
23
23
  - README.md
24
24
  - Rakefile
25
- - lib/group.rb
26
- - lib/smoothing_group.rb
27
- - lib/triangle.rb
28
- - lib/vec3.rb
29
- - lib/vertex.rb
30
25
  - lib/wavefront.rb
26
+ - lib/wavefront/group.rb
27
+ - lib/wavefront/smoothing_group.rb
28
+ - lib/wavefront/triangle.rb
29
+ - lib/wavefront/vec3.rb
31
30
  - lib/wavefront/version.rb
32
- - lib/wavefront_file.rb
33
- - lib/wavefront_object.rb
31
+ - lib/wavefront/vertex.rb
32
+ - lib/wavefront/wavefront_file.rb
33
+ - lib/wavefront/wavefront_object.rb
34
34
  - wavefront.gemspec
35
35
  homepage: https://github.com/MishaConway/wavefront-ruby
36
36
  licenses: