railman-deployment 0.2.0 → 0.2.1

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: ed1bc438c02aad6807ac89c015ba392deac9458d
4
- data.tar.gz: d5af8235ec5d60ff9e75a0f39ab91de61b7476da
3
+ metadata.gz: cd260ae83c74eafa98209abaf2d248db105c24f6
4
+ data.tar.gz: 168ae2c05abd384a8c97cca99a53ae51eaedb827
5
5
  SHA512:
6
- metadata.gz: da2e304e8e33db41098458226c7ae72fc5ef0a66c34752ec24e6c9c2f247c42c8fe0e4d816c222a175facf5eba29e905bbabac7cee3caf704eeefba81b2fa9fb
7
- data.tar.gz: eeb59b599164683eaa0058cfc6bd6b641fb0af93bf3c1146396a56dce22e59ad09ec059177ae2b4bc921eb014882484b2ee741022ca6c77ea940b036e20f8d83
6
+ metadata.gz: 146529be1e27becf35ce491ebd962fc8d7ff886edb50e1bfed94ada58a1859779e0f00a578e4dedba6eee179f95abaee2c6c008501ede287e1365774d1fb3de9
7
+ data.tar.gz: 2de10020fefc02c07ea6482342600f08012f75506bd569f25c78f4cb6f69041767113eba8003fac29ae35cda6df26629c7b7d5b477034ada0c187c231b21d094
data/.envrc ADDED
@@ -0,0 +1 @@
1
+ PATH_add bin
data/.gitignore CHANGED
@@ -3,6 +3,7 @@
3
3
  /Gemfile.lock
4
4
  /_yardoc/
5
5
  /coverage/
6
+ /test/coverage/
6
7
  /doc/
7
8
  /pkg/
8
9
  /spec/reports/
@@ -0,0 +1,5 @@
1
+ SimpleCov.start do
2
+ coverage_dir 'test/coverage'
3
+ end
4
+
5
+
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "<%= @gem_name %>"
4
+ require "railman-deployment"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -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
@@ -1,3 +1,3 @@
1
1
  module RailmanDeployment
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
  end
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.0
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-02 00:00:00.000000000 Z
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