entitize 0.1.1 → 0.1.2

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: 6fbc8934b6cd07c1fbdfe8b595990f1dbffbf09b
4
- data.tar.gz: 8dba87d49114cf2df41d6aa19237bf13a7cac28a
3
+ metadata.gz: eb09f08b447c679a16ea5cde94685f37b16288df
4
+ data.tar.gz: 348c5016692fd28e971d9f106ee190f27a360fd4
5
5
  SHA512:
6
- metadata.gz: d649cd95b75bf53dfe48c68b393adb78f77ab91bacbe563a1b6ff99851788d1aa8dec237f47654ec285a15acb052904effa2f00f26346b907750129032a69235
7
- data.tar.gz: 9dcb792cad5c7796a6dd596594f4b61e6003fb49a9f7dfb2fc14ff8dbdc839aafbf9d9fc8954e8ad59d1701915c3c163da1f200dc4d6b2df287a25f6dda90e6e
6
+ metadata.gz: 43d8117eb010bab9d1d294401e7f58009d0e8b48c4a6c4dc345965da2138660e6c9d3ee8a6896d87b7864928329d6d5e042f773967e8bf3d7bc15d49c45314e7
7
+ data.tar.gz: 5f2d87b6bcf5bff355879eaa14d348df82b49c82157256329655a793e787c50d52516d643196d51ac4a0df6832afa7a2483c1c05ed71f384a71a8ed7c0c5d4ed
@@ -3,7 +3,6 @@
3
3
  require 'active_support/inflector'
4
4
 
5
5
  require "entitize/version"
6
- require "entitize/entities"
7
6
  require "entitize/repo"
8
7
  require "entitize/classifier"
9
8
  require "entitize/entity"
@@ -12,7 +11,7 @@ module Entitize
12
11
 
13
12
  # TODO: Make this customizable
14
13
  def self.base_class
15
- Entities
14
+ Entitize
16
15
  end
17
16
 
18
17
  end
@@ -30,7 +30,7 @@ module Entitize
30
30
  if base_class.const_defined?(class_name)
31
31
 
32
32
  klass = base_class.const_get(class_name)
33
- if klass.to_s.include?("Entities::")
33
+ if klass.to_s.include?("Entitize::")
34
34
  klass
35
35
  else
36
36
  base_class.const_set(class_name, build(data))
@@ -1,3 +1,3 @@
1
1
  module Entitize
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: entitize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Fiser
@@ -74,7 +74,6 @@ files:
74
74
  - entitize.gemspec
75
75
  - lib/entitize.rb
76
76
  - lib/entitize/classifier.rb
77
- - lib/entitize/entities.rb
78
77
  - lib/entitize/entity.rb
79
78
  - lib/entitize/repo.rb
80
79
  - lib/entitize/version.rb
@@ -1,2 +0,0 @@
1
- module Entities
2
- end