railman 0.3.3 → 0.3.4

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b100823312ce49c02322e16cfef41f73ef95155e
4
- data.tar.gz: c9f22f759be405a465ddb0c9b3dd911207e40172
3
+ metadata.gz: 70c3b31bbf5e4b69ad379f3ca532ce28ff66e06c
4
+ data.tar.gz: f508d2b4c1748fcfd4caa5fde07b823dffd21f5a
5
5
  SHA512:
6
- metadata.gz: 40ccd083bf099d2fc00cdbffea89e455f4b4cc11a47c92b901122a777711435ac2b90fa3086fe62c6a2456229f9498e37b9eed3a16ca4694f74196381556ed81
7
- data.tar.gz: f82ff80148f3a7225b059fcb7ed488e09eef38bd43938c6ff2cf80fd7ac6fde1b2e350ea5b41cbdeadc9ca5e9f11a16176879dbb2f468cd486de50889c479cb1
6
+ metadata.gz: 54a3418ae09ee7404b7fc1904b7c77f714183d3533af2b4ec10dba40dab9bc405e48109c93b48ab5a1febe59abb9de1e23d2be21db3bd480ffed442a3c68ffbf
7
+ data.tar.gz: a23f8364c76a89ee1e2c8dd1c8778b4f77f31bb79590c4260285681b33c03f34fb08eb7a27d2944bc5ce7df63ed36ddda85bc7bc94f64e24f1e38d29b2ea325a
@@ -1,3 +1,3 @@
1
1
  module Railman
2
- VERSION = '0.3.3'
2
+ VERSION = '0.3.4'
3
3
  end
@@ -19,7 +19,7 @@ SECRET_TOKEN = '<%= @rake_secret %>'
19
19
  SMTP_SERVER = 'mail.<%= @config.domain %>'
20
20
  SMTP_USER = 'server@<%= @config.domain %>'
21
21
  SMTP_PASSWORD = '*****'
22
- SMTP_DOMAIN = '<%= @config.domain %>'
22
+ SMTP_DOMAIN = '<%= @config.server %>'
23
23
  SMTP_DEFAULT_URL = '<%= @config.domain %>'
24
24
 
25
25
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  Rails.application.config.session_store :redis_session_store, {
4
4
  key: "_<%= @config.app_name %>_session",
5
- redis: { key_prefix: "<%= @config.app_name %>:", expire_after: 2.minutes }
5
+ redis: { key_prefix: "<%= @config.app_name %>:", expire_after: 30.minutes }
6
6
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: railman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Jancev
@@ -194,7 +194,6 @@ files:
194
194
  - templates/rails_app/bin/setup
195
195
  - templates/rails_app/bin/sidekiq
196
196
  - templates/rails_app/bin/sidekiqctl
197
- - templates/rails_app/bin/spring
198
197
  - templates/rails_app/bin/unicorn
199
198
  - templates/rails_app/bin/unicorn_rails
200
199
  - templates/rails_app/config.ru
@@ -1,15 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- # This file loads spring without using Bundler, in order to be fast.
4
- # It gets overwritten when you run the `spring binstub` command.
5
-
6
- unless defined?(Spring)
7
- require 'rubygems'
8
- require 'bundler'
9
-
10
- if (match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m))
11
- Gem.paths = { 'GEM_PATH' => [Bundler.bundle_path.to_s, *Gem.path].uniq.join(Gem.path_separator) }
12
- gem 'spring', match[1]
13
- require 'spring/binstub'
14
- end
15
- end