capistrano-buildpack 0.0.11 → 0.0.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.repo.yml +3 -0
- data/README.md +2 -5
- data/lib/capistrano-buildpack/tasks.rb +2 -2
- data/lib/capistrano-buildpack/version.rb +1 -1
- metadata +6 -7
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
MmI5ODlkZWIyMjc0NTk2Njk3Zjc2MTBkOGNiMGM0ZDI1N2I2OTU1Mg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
OWIwYjMzOTg2NmQ3YmZmYTZlOGI5MGEyNTg5NTVlNTJhNGUwN2I1ZA==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
YjIzNTZjMjYwZjMzZDU4Y2ViZDNiMzIyYjhhZGRmYTIwM2QyNjIyNjA4ZDAw
|
10
|
+
ZTU5YWUyNDE1MTlkOWE4NTM3YWQ0ZTQzN2Q1ZjA0OGUxMDg2NDAyN2I4NTFj
|
11
|
+
NGY1MzE3MzQwN2JlYWE3MDY2M2RiMThjZGRhZDU0ZDUxNjVjOTU=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
OTllYjdjNDE2NzEwNGI5N2NjMjc4NTUwODNlZjk4ZWUwYTFmZDU4ZWI1Zjcy
|
14
|
+
NjMwY2IyYTBjNzdiMDViYTYxOTFmZGVmOGU0YWMyMWE2OGVjMmY3YWM3N2My
|
15
|
+
YmM2YmVmMDMzMGY2NTU1OTJmOGU0NmYyOGZhNWVjMzU0ZjU3M2Q=
|
data/.repo.yml
ADDED
data/README.md
CHANGED
@@ -88,8 +88,5 @@ In addition, at the moment the exported nginx config does not have compression t
|
|
88
88
|
|
89
89
|
## Contributing
|
90
90
|
|
91
|
-
|
92
|
-
|
93
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
94
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
95
|
-
5. Create new Pull Request
|
91
|
+
Email patches to [capistrano.buildpack@petekeen.net](mailto:capistrano.buildpack@petekeen.net).
|
92
|
+
|
@@ -65,8 +65,6 @@ if Capistrano::Configuration.instance
|
|
65
65
|
end
|
66
66
|
|
67
67
|
task "compile" do
|
68
|
-
run("cd #{buildpack_path} && RACK_ENV=production bin/compile #{release_path} #{shared_path}/.build/build_cache")
|
69
|
-
|
70
68
|
env_lines = []
|
71
69
|
deploy_env.each do |k,v|
|
72
70
|
env_lines << "#{k}=#{v}"
|
@@ -74,6 +72,8 @@ if Capistrano::Configuration.instance
|
|
74
72
|
env_contents = env_lines.join("\n") + "\n"
|
75
73
|
|
76
74
|
put(env_contents, "#{release_path}/.env")
|
75
|
+
|
76
|
+
run("cd #{buildpack_path} && RACK_ENV=production bin/compile #{release_path} #{shared_path}/.build/build_cache")
|
77
77
|
end
|
78
78
|
|
79
79
|
task "foreman_export" do
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-buildpack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.12
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Pete Keen
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-08-02 00:00:00.000000000 Z
|
13
12
|
dependencies: []
|
14
13
|
description: Deploy 12-factor applications using Capistrano
|
15
14
|
email:
|
@@ -19,6 +18,7 @@ extensions: []
|
|
19
18
|
extra_rdoc_files: []
|
20
19
|
files:
|
21
20
|
- .gitignore
|
21
|
+
- .repo.yml
|
22
22
|
- Gemfile
|
23
23
|
- LICENSE.txt
|
24
24
|
- README.md
|
@@ -29,26 +29,25 @@ files:
|
|
29
29
|
- lib/capistrano-buildpack/version.rb
|
30
30
|
homepage: https://github.com/peterkeen/capistrano-buildpack
|
31
31
|
licenses: []
|
32
|
+
metadata: {}
|
32
33
|
post_install_message:
|
33
34
|
rdoc_options: []
|
34
35
|
require_paths:
|
35
36
|
- lib
|
36
37
|
required_ruby_version: !ruby/object:Gem::Requirement
|
37
|
-
none: false
|
38
38
|
requirements:
|
39
39
|
- - ! '>='
|
40
40
|
- !ruby/object:Gem::Version
|
41
41
|
version: '0'
|
42
42
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
43
|
-
none: false
|
44
43
|
requirements:
|
45
44
|
- - ! '>='
|
46
45
|
- !ruby/object:Gem::Version
|
47
46
|
version: '0'
|
48
47
|
requirements: []
|
49
48
|
rubyforge_project:
|
50
|
-
rubygems_version:
|
49
|
+
rubygems_version: 2.2.2
|
51
50
|
signing_key:
|
52
|
-
specification_version:
|
51
|
+
specification_version: 4
|
53
52
|
summary: Deploy 12-factor applications using Capistrano
|
54
53
|
test_files: []
|