o2webappizer 0.1.12 → 0.1.13
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 +4 -4
- data/lib/o2webappizer/app_builder.rb +2 -0
- data/lib/o2webappizer/version.rb +1 -1
- data/templates/Gemfile.tt +1 -1
- data/templates/README.md.tt +5 -0
- data/templates/config/nginx.app.conf.erb +0 -3
- data/templates/config/nginx.conf.erb +2 -0
- data/templates/config/sunzi/recipes/sysstat.sh +1 -0
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0c45a6ef674aff3dcfd4017b9f2f552a0ecb45ee
|
|
4
|
+
data.tar.gz: 1a18d695ef3f01be8d711f6df89c45dc8af92ecc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9f484f506728431c87d937b1ae8f736e57d308e2e887c2184016299c636c6ac5981f71b0b263cdcc2601ec446396911cf133725a924f95592606368482f1fa8
|
|
7
|
+
data.tar.gz: d758115a677fa77f5655264bf9d6cabb89319f9d483720f35506407c1aac08a93da440f778912a004103fcfc7d3a1e045c333b765898ae52b943bbb17786eb06
|
|
@@ -232,6 +232,8 @@ module O2webappizer
|
|
|
232
232
|
|
|
233
233
|
def configure_production
|
|
234
234
|
configure_env 'production', 'error'
|
|
235
|
+
gsub_file 'production.rb', 'config.assets.js_compressor = :uglifier',
|
|
236
|
+
'config.assets.js_compressor = Uglifier.new(copyright: false)'
|
|
235
237
|
end
|
|
236
238
|
|
|
237
239
|
def configure_staging
|
data/lib/o2webappizer/version.rb
CHANGED
data/templates/Gemfile.tt
CHANGED
|
@@ -41,7 +41,7 @@ group :development, :test do
|
|
|
41
41
|
gem 'spring', '~> 1.3.6'
|
|
42
42
|
|
|
43
43
|
# gem 'web-console', '~> 3.0'
|
|
44
|
-
gem 'xray-rails', github: '
|
|
44
|
+
gem 'xray-rails', github: 'brentd/xray-rails'
|
|
45
45
|
gem 'quiet_assets'
|
|
46
46
|
gem 'coffee-rails-source-paths', github: 'Machiaweliczny/coffee-rails-source-paths'
|
|
47
47
|
gem 'sass-rails-source-maps', github: 'inopinatus/sass-rails-source-maps'
|
data/templates/README.md.tt
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## Local setup, make sure that these librairies are installed with:
|
|
4
4
|
|
|
5
|
+
```console
|
|
6
|
+
brew tap homebrew/dupes
|
|
7
|
+
brew tap homebrew/versions
|
|
8
|
+
```
|
|
9
|
+
|
|
5
10
|
```console
|
|
6
11
|
brew install autoconf gdbm libpng ossp-uuid autoenv gettext libtool pcre readline automake git libyaml redis
|
|
7
12
|
```
|
|
@@ -70,6 +70,8 @@ http {
|
|
|
70
70
|
|
|
71
71
|
passenger_root /usr/lib/ruby/vendor_ruby/phusion_passenger/locations.ini;
|
|
72
72
|
passenger_ruby /home/<%= fetch(:deployer_name) %>/.rbenv/shims/ruby;
|
|
73
|
+
passenger_pool_idle_time 0;
|
|
74
|
+
passenger_max_request_queue_size 1000;
|
|
73
75
|
|
|
74
76
|
##
|
|
75
77
|
# Virtual Host Configs
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: o2webappizer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Patrice Lebel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -207,4 +207,3 @@ signing_key:
|
|
|
207
207
|
specification_version: 4
|
|
208
208
|
summary: Project Boilerplate Builder used by O2Web
|
|
209
209
|
test_files: []
|
|
210
|
-
has_rdoc:
|