cany 0.0.1 → 0.0.2
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/.travis.yml +4 -0
- data/Gemfile +1 -0
- data/README.md +5 -0
- data/lib/cany/dpkg/creator.rb +2 -1
- data/lib/cany/dpkg/deb_helper_recipe.rb +1 -1
- data/lib/cany/recipe.rb +1 -1
- data/lib/cany/recipes/rails.rb +3 -1
- data/lib/cany/version.rb +1 -1
- data/spec/spec_helper.rb +4 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 259ed776e530912657f05fd1f8ec41ef3de1d667
|
|
4
|
+
data.tar.gz: 6c9441bcd31cec929af0d129206495cb54ab5f34
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28292d32841cc8e2842207dfb71d9d0b90cf8367ab42f1fb8d6adc85dd398527a9b2d8bf5183b367d48c906d6e9d24eb6e497ceaa56d9d3e37e9aeaf405bac7b
|
|
7
|
+
data.tar.gz: 68462bee6203f87debebae7d4e9dbbcef6f6aa858da5904ed51502852ff596b7d5cb15d927cfb8b1f36be61bfbf907e7c696068722e30f60f530ba04733965c3
|
data/.travis.yml
ADDED
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Cany
|
|
2
2
|
|
|
3
|
+
[](http://badge.fury.io/rb/cany)
|
|
4
|
+
[](https://travis-ci.org/mswart/cany)
|
|
5
|
+
[](https://coveralls.io/r/mswart/cany)
|
|
6
|
+
[](https://codeclimate.com/github/mswart/cany)
|
|
7
|
+
|
|
3
8
|
Cany is a toolkit to create easily distribution packages from your (ruby) application. The goal is to reduce the packaging work to managing the application meta data (specification).
|
|
4
9
|
|
|
5
10
|
The goal is to support all (common) package manager - all from the some specification, although at the moment is only dpkg implemented.
|
data/lib/cany/dpkg/creator.rb
CHANGED
|
@@ -72,7 +72,8 @@ module Cany
|
|
|
72
72
|
require 'bundler'
|
|
73
73
|
lock_path = File.join(spec.base_dir, 'Gemfile.lock')
|
|
74
74
|
extra_libs = {
|
|
75
|
-
pg: ['libpq-dev', 'libpq5']
|
|
75
|
+
pg: ['libpq-dev', 'libpq5'],
|
|
76
|
+
ethon: ['libcurl3 | libcurl3-gnutls | libcurl3-nss', 'libcurl3 | libcurl3-gnutls | libcurl3-nss']
|
|
76
77
|
}
|
|
77
78
|
src_deps = ['debhelper (>= 7.0.50~)', ruby_deb, ruby_deb + '-dev']
|
|
78
79
|
bin_deps = ['${shlibs:Depends}', '${misc:Depends}', ruby_deb]
|
data/lib/cany/recipe.rb
CHANGED
data/lib/cany/recipes/rails.rb
CHANGED
data/lib/cany/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cany
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Malte Swart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-09-
|
|
11
|
+
date: 2013-09-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -61,6 +61,7 @@ extensions: []
|
|
|
61
61
|
extra_rdoc_files: []
|
|
62
62
|
files:
|
|
63
63
|
- .gitignore
|
|
64
|
+
- .travis.yml
|
|
64
65
|
- Gemfile
|
|
65
66
|
- LICENSE.txt
|
|
66
67
|
- README.md
|