pushdeploy 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,3 @@
1
1
  module Pushdeploy
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: pushdeploy
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.8
5
+ version: 0.0.9
6
6
  platform: ruby
7
7
  authors:
8
8
  - Artem Yankov
@@ -24,16 +24,10 @@ extensions: []
24
24
  extra_rdoc_files: []
25
25
 
26
26
  files:
27
- - .gitignore
28
- - Gemfile
29
- - MIT-LICENSE
30
- - README.md
31
- - Rakefile
32
- - bin/pushdeploy_create_config
33
- - bin/pushdeploy_install_hook
34
27
  - lib/pushdeploy/pushdeploy.rb
35
28
  - lib/pushdeploy/version.rb
36
- - pushdeploy.gemspec
29
+ - bin/pushdeploy_create_config
30
+ - bin/pushdeploy_install_hook
37
31
  homepage: ""
38
32
  licenses: []
39
33
 
data/.gitignore DELETED
@@ -1,3 +0,0 @@
1
- /.bundle
2
- /Gemfile.lock
3
- /pkg/*
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source "http://rubygems.org"
2
-
3
- # Specify your gem's dependencies in pushdeploy.gemspec
4
- gemspec
data/MIT-LICENSE DELETED
@@ -1,20 +0,0 @@
1
- Copyright (c) Artem Yankov
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md DELETED
@@ -1,14 +0,0 @@
1
- Pushdeploy
2
- ==========
3
-
4
- * 1
5
- * 2
6
- * 3
7
-
8
- Install
9
- -------
10
- $ some code
11
- $ goeshere
12
-
13
- Usage
14
- -----
data/Rakefile DELETED
@@ -1,2 +0,0 @@
1
- require 'bundler'
2
- Bundler::GemHelper.install_tasks
data/pushdeploy.gemspec DELETED
@@ -1,21 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "pushdeploy/version"
4
-
5
- Gem::Specification.new do |s|
6
- s.name = "pushdeploy"
7
- s.version = Pushdeploy::VERSION
8
- s.platform = Gem::Platform::RUBY
9
- s.authors = ["Artem Yankov"]
10
- s.email = ["artem.yankov@gmail.com"]
11
- s.homepage = ""
12
- s.summary = %q{Easy deployment after 'git push' for Ruby applications}
13
- s.description = %q{Automatically deploys application after 'git push' and run specified commands like 'bundle install' and 'rake db:migrate'}
14
-
15
- s.rubyforge_project = "pushdeploy"
16
-
17
- s.files = `git ls-files`.split("\n")
18
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
- s.require_paths = ["lib"]
21
- end