lobby 0.0.16 → 0.0.17
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.
- data/lib/lobby/engine.rb +1 -0
- data/lib/lobby/engine.rb~ +14 -0
- data/lib/lobby/version.rb +1 -1
- data/lib/lobby/version.rb~ +1 -1
- metadata +2 -1
data/lib/lobby/engine.rb
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
module Lobby
|
|
2
|
+
class Engine < ::Rails::Engine
|
|
3
|
+
isolate_namespace Lobby
|
|
4
|
+
|
|
5
|
+
config.generators do |g|
|
|
6
|
+
g.test_framework :rspec, :view_specs => false
|
|
7
|
+
g.integration_tool :rspec
|
|
8
|
+
g.fixture_replacement :factory_girl, :dir => 'spec/factories'
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
config.autoload_paths += Dir["#{config.root}/app/models/lobby/"]
|
|
12
|
+
config.autoload_paths += Dir["#{config.root}/lib/**/"]
|
|
13
|
+
end
|
|
14
|
+
end
|
data/lib/lobby/version.rb
CHANGED
data/lib/lobby/version.rb~
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lobby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.17
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -243,6 +243,7 @@ files:
|
|
|
243
243
|
- config/locales/en.yml
|
|
244
244
|
- config/locales/en.bootstrap.yml
|
|
245
245
|
- config/routes.rb
|
|
246
|
+
- lib/lobby/engine.rb~
|
|
246
247
|
- lib/lobby/engine.rb
|
|
247
248
|
- lib/lobby/version.rb
|
|
248
249
|
- lib/lobby/version.rb~
|