rails_live 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/generators/USAGE +2 -2
- data/lib/generators/rails_live_generator.rb +2 -2
- data/lib/generators/templates/rails_live.rb +1 -1
- data/lib/rails_live/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88c097207a97f1729c7a4a8f00d88088a4a26a24f4977c068e2bac3157ae1a5f
|
4
|
+
data.tar.gz: 502559f9749eb996f6d2562753745dc1758d730245e8fd14ef8bad9ce1f616b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1412e20ff748be79ee3290a85e1da6acbdf86044952ebdfacf6a5ffbc4a6495d55ea511cfd504aa26cdb2726fc12e73552636b021956abc41a564f23f847277
|
7
|
+
data.tar.gz: 8b6ec5da06c6aed3c3aef0ebaee62407069f1a8be15b6a362b1415af309b877cccfb90b620180e9030b0a16ef4a9ca3ffff7d490fe6dfbf3cb64cd897a17331d
|
data/lib/generators/USAGE
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
class
|
1
|
+
class RailsLiveGenerator < Rails::Generators::NamedBase
|
2
2
|
source_root File.expand_path('../templates', __FILE__)
|
3
3
|
def copy_initializer
|
4
|
-
template '
|
4
|
+
template 'rails_live.rb', 'config/initializers/rails_live.rb'
|
5
5
|
end
|
6
6
|
end
|
@@ -10,7 +10,7 @@ if Object.const_defined?('RailsLive')
|
|
10
10
|
# config.http_basic_authentication_enabled = false
|
11
11
|
|
12
12
|
# # Enable http basic authentication
|
13
|
-
# config.http_basic_authentication_user_name = '
|
13
|
+
# config.http_basic_authentication_user_name = 'rails_live'
|
14
14
|
|
15
15
|
# # Enable http basic authentication
|
16
16
|
# config.http_basic_authentication_password = 'passw0))rd'
|
data/lib/rails_live/version.rb
CHANGED