railman 0.3.3 → 0.3.4
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70c3b31bbf5e4b69ad379f3ca532ce28ff66e06c
|
4
|
+
data.tar.gz: f508d2b4c1748fcfd4caa5fde07b823dffd21f5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54a3418ae09ee7404b7fc1904b7c77f714183d3533af2b4ec10dba40dab9bc405e48109c93b48ab5a1febe59abb9de1e23d2be21db3bd480ffed442a3c68ffbf
|
7
|
+
data.tar.gz: a23f8364c76a89ee1e2c8dd1c8778b4f77f31bb79590c4260285681b33c03f34fb08eb7a27d2944bc5ce7df63ed36ddda85bc7bc94f64e24f1e38d29b2ea325a
|
data/lib/railman/version.rb
CHANGED
@@ -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.
|
22
|
+
SMTP_DOMAIN = '<%= @config.server %>'
|
23
23
|
SMTP_DEFAULT_URL = '<%= @config.domain %>'
|
24
24
|
|
25
25
|
|
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.
|
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
|