has_constant 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
data/has_constant.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{has_constant}
8
- s.version = "0.2.1"
8
+ s.version = "0.2.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["mattbeedle"]
@@ -27,8 +27,8 @@ Gem::Specification.new do |s|
27
27
  "VERSION",
28
28
  "has_constant.gemspec",
29
29
  "lib/has_constant.rb",
30
- "lib/orm/active_record.rb",
31
- "lib/orm/mongoid.rb",
30
+ "lib/has_constant/orm/active_record.rb",
31
+ "lib/has_constant/orm/mongoid.rb",
32
32
  "test/has_constant_test.rb",
33
33
  "test/helper.rb",
34
34
  "test/unit/orm/active_record_test.rb",
File without changes
File without changes
data/lib/has_constant.rb CHANGED
@@ -1,5 +1,5 @@
1
- require 'lib/orm/mongoid'
2
- require 'lib/orm/active_record'
1
+ require 'has_constant/orm/mongoid'
2
+ require 'has_constant/orm/active_record'
3
3
  require 'active_support/inflector'
4
4
  module HasConstant
5
5
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: has_constant
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 1
10
- version: 0.2.1
9
+ - 2
10
+ version: 0.2.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - mattbeedle
@@ -66,8 +66,8 @@ files:
66
66
  - VERSION
67
67
  - has_constant.gemspec
68
68
  - lib/has_constant.rb
69
- - lib/orm/active_record.rb
70
- - lib/orm/mongoid.rb
69
+ - lib/has_constant/orm/active_record.rb
70
+ - lib/has_constant/orm/mongoid.rb
71
71
  - test/has_constant_test.rb
72
72
  - test/helper.rb
73
73
  - test/unit/orm/active_record_test.rb