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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c93eec0ad8ef37f218e2bc2c7b14bce47764f65ca547ddc5c6e304b90b797d15
4
- data.tar.gz: 785789ed97c191b4a8dd7b39b664bb4f5003102ff278634c2ee8d4b88fa64000
3
+ metadata.gz: 88c097207a97f1729c7a4a8f00d88088a4a26a24f4977c068e2bac3157ae1a5f
4
+ data.tar.gz: 502559f9749eb996f6d2562753745dc1758d730245e8fd14ef8bad9ce1f616b8
5
5
  SHA512:
6
- metadata.gz: dbc8e57cf75af475a091185f8a512876b7065bfa61804c5405b5660587b47ac7871ea1eaba5682855a318d05a764ad1538abc5b26997dab80f1b087d210bb482
7
- data.tar.gz: 39e6b9858192ea1e105a0e94ce7c9de872d83c880f4f949c33533359f5f31e808f6691bac3daa77915aa7ca5f906540817de357311f5a7e770ec188f96cbce15
6
+ metadata.gz: a1412e20ff748be79ee3290a85e1da6acbdf86044952ebdfacf6a5ffbc4a6495d55ea511cfd504aa26cdb2726fc12e73552636b021956abc41a564f23f847277
7
+ data.tar.gz: 8b6ec5da06c6aed3c3aef0ebaee62407069f1a8be15b6a362b1415af309b877cccfb90b620180e9030b0a16ef4a9ca3ffff7d490fe6dfbf3cb64cd897a17331d
data/lib/generators/USAGE CHANGED
@@ -2,7 +2,7 @@ Description:
2
2
  Generate configuration file.
3
3
 
4
4
  Example:
5
- rails generate rails_db initializer
5
+ rails generate rails_live initializer
6
6
 
7
7
  This will create:
8
- config/rails_db.rb
8
+ config/rails_live.rb
@@ -1,6 +1,6 @@
1
- class RailsDbGenerator < Rails::Generators::NamedBase
1
+ class RailsLiveGenerator < Rails::Generators::NamedBase
2
2
  source_root File.expand_path('../templates', __FILE__)
3
3
  def copy_initializer
4
- template 'rails_db.rb', 'config/initializers/rails_db.rb'
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 = 'rails_db'
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'
@@ -1,3 +1,3 @@
1
1
  module RailsLive
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_live
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Kasyanchuk