simple-constraints 1.0.0 → 1.0.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.
@@ -1,5 +1,5 @@
1
1
  module Simple
2
2
  module Constraints
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
@@ -1,3 +1,4 @@
1
+ require 'simple/constraints/version'
1
2
  require 'simple/constraints/subdomain'
2
3
 
3
4
  module Simple
@@ -7,3 +8,5 @@ module Simple
7
8
  end
8
9
  end
9
10
  end
11
+
12
+ require 'simple/constraints/railtie' if defined?(Rails)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple-constraints
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -39,7 +39,6 @@ files:
39
39
  - lib/simple/constraints/subdomain.rb
40
40
  - lib/simple/constraints/version.rb
41
41
  - lib/simple/constraints.rb
42
- - lib/simple.rb
43
42
  - Rakefile
44
43
  - README.md
45
44
  - spec/dummy/app/assets/javascripts/application.js
@@ -89,7 +88,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
89
88
  version: '0'
90
89
  segments:
91
90
  - 0
92
- hash: 1530072064157456150
91
+ hash: 4596880479353924767
93
92
  required_rubygems_version: !ruby/object:Gem::Requirement
94
93
  none: false
95
94
  requirements:
@@ -98,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
98
97
  version: '0'
99
98
  segments:
100
99
  - 0
101
- hash: 1530072064157456150
100
+ hash: 4596880479353924767
102
101
  requirements: []
103
102
  rubyforge_project:
104
103
  rubygems_version: 1.8.24
data/lib/simple.rb DELETED
@@ -1,4 +0,0 @@
1
- require 'simple/constraints/version'
2
- require 'simple/constraints'
3
-
4
- require 'simple/constraints/railtie' if defined?(Rails)