railman-deployment 0.2.0 → 0.2.1
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/.envrc +1 -0
- data/.gitignore +1 -0
- data/.simplecov +5 -0
- data/bin/console +1 -1
- data/bin/rake +16 -0
- data/bin/setup +0 -0
- data/lib/railman-deployment/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd260ae83c74eafa98209abaf2d248db105c24f6
|
|
4
|
+
data.tar.gz: 168ae2c05abd384a8c97cca99a53ae51eaedb827
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 146529be1e27becf35ce491ebd962fc8d7ff886edb50e1bfed94ada58a1859779e0f00a578e4dedba6eee179f95abaee2c6c008501ede287e1365774d1fb3de9
|
|
7
|
+
data.tar.gz: 2de10020fefc02c07ea6482342600f08012f75506bd569f25c78f4cb6f69041767113eba8003fac29ae35cda6df26629c7b7d5b477034ada0c187c231b21d094
|
data/.envrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
PATH_add bin
|
data/.gitignore
CHANGED
data/.simplecov
ADDED
data/bin/console
CHANGED
data/bin/rake
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
#
|
|
3
|
+
# This file was generated by Bundler.
|
|
4
|
+
#
|
|
5
|
+
# The application 'rake' is installed as part of a gem, and
|
|
6
|
+
# this file is here to facilitate running it.
|
|
7
|
+
#
|
|
8
|
+
|
|
9
|
+
require "pathname"
|
|
10
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
11
|
+
Pathname.new(__FILE__).realpath)
|
|
12
|
+
|
|
13
|
+
require "rubygems"
|
|
14
|
+
require "bundler/setup"
|
|
15
|
+
|
|
16
|
+
load Gem.bin_path("rake", "rake")
|
data/bin/setup
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: railman-deployment
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Igor Jancev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-05-
|
|
11
|
+
date: 2016-05-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -130,14 +130,17 @@ executables: []
|
|
|
130
130
|
extensions: []
|
|
131
131
|
extra_rdoc_files: []
|
|
132
132
|
files:
|
|
133
|
+
- ".envrc"
|
|
133
134
|
- ".gitignore"
|
|
134
135
|
- ".ruby-version"
|
|
136
|
+
- ".simplecov"
|
|
135
137
|
- ".travis.yml"
|
|
136
138
|
- Gemfile
|
|
137
139
|
- LICENCE.txt
|
|
138
140
|
- README.md
|
|
139
141
|
- Rakefile
|
|
140
142
|
- bin/console
|
|
143
|
+
- bin/rake
|
|
141
144
|
- bin/setup
|
|
142
145
|
- lib/railman-deployment.rb
|
|
143
146
|
- lib/railman-deployment/version.rb
|