lobby 0.0.6 → 0.0.7
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/config/locales/de.yml +9 -1
- data/config/locales/de.yml~ +3 -0
- data/lib/lobby/engine.rb +1 -1
- data/lib/lobby/engine.rb~ +13 -0
- data/lib/lobby/version.rb +1 -1
- data/lib/lobby/version.rb~ +1 -1
- data/lib/lobby.rb +4 -0
- data/lib/lobby.rb~ +3 -0
- metadata +4 -2
data/config/locales/de.yml
CHANGED
@@ -97,8 +97,16 @@ de:
|
|
97
97
|
success: "Der Aktivierungstoken wurde nochmal gesendet"
|
98
98
|
error: "Du bist schon freigeschaltet. Dieser Link ist nicht mehr gültig."
|
99
99
|
|
100
|
-
|
101
100
|
password_forgotten:
|
101
|
+
new:
|
102
|
+
title: "Neues Passwort erstellen"
|
103
|
+
label_new_password: "Neues Passwort"
|
104
|
+
label_new_password_confirmation: "Neues Passwort wiederholen"
|
105
|
+
flash:
|
106
|
+
success: "Dein Passwort wurde geändert. Du kannst Dich nun mit Deinem neuen Passwort einloggen."
|
107
|
+
create:
|
108
|
+
notice:
|
109
|
+
success: "Dein Passwort wurde geändert."
|
102
110
|
create:
|
103
111
|
notice:
|
104
112
|
success: "Das neue Password wurde erfolgreich angelegt."
|
data/config/locales/de.yml~
CHANGED
data/lib/lobby/engine.rb
CHANGED
@@ -0,0 +1,13 @@
|
|
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}/lib/**/"]
|
12
|
+
end
|
13
|
+
end
|
data/lib/lobby/version.rb
CHANGED
data/lib/lobby/version.rb~
CHANGED
data/lib/lobby.rb
CHANGED
data/lib/lobby.rb~
ADDED
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.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-12-
|
12
|
+
date: 2013-12-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -245,6 +245,7 @@ files:
|
|
245
245
|
- config/locales/en.bootstrap.yml
|
246
246
|
- config/locales/de.yml~
|
247
247
|
- config/routes.rb
|
248
|
+
- lib/lobby/engine.rb~
|
248
249
|
- lib/lobby/engine.rb
|
249
250
|
- lib/lobby/version.rb
|
250
251
|
- lib/lobby/version.rb~
|
@@ -269,6 +270,7 @@ files:
|
|
269
270
|
- lib/generators/templates/views/common/_form_errors.html.haml
|
270
271
|
- lib/generators/templates/views/users/new.html.haml
|
271
272
|
- lib/lobby.rb
|
273
|
+
- lib/lobby.rb~
|
272
274
|
- lib/tasks/lobby_tasks.rake
|
273
275
|
- MIT-LICENSE
|
274
276
|
- Rakefile
|