pushdeploy 0.0.6 → 0.0.8

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.
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ /.bundle
2
+ /Gemfile.lock
3
+ /pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in pushdeploy.gemspec
4
+ gemspec
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
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 ADDED
@@ -0,0 +1,14 @@
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 ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
@@ -1,3 +1,3 @@
1
1
  module Pushdeploy
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -0,0 +1,21 @@
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
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: pushdeploy
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.6
5
+ version: 0.0.8
6
6
  platform: ruby
7
7
  authors:
8
8
  - Artem Yankov
@@ -17,7 +17,6 @@ description: Automatically deploys application after 'git push' and run specifie
17
17
  email:
18
18
  - artem.yankov@gmail.com
19
19
  executables:
20
- - pushdeploy
21
20
  - pushdeploy_create_config
22
21
  - pushdeploy_install_hook
23
22
  extensions: []
@@ -25,11 +24,16 @@ extensions: []
25
24
  extra_rdoc_files: []
26
25
 
27
26
  files:
28
- - lib/pushdeploy/version.rb
29
- - lib/pushdeploy.rb
30
- - bin/pushdeploy
27
+ - .gitignore
28
+ - Gemfile
29
+ - MIT-LICENSE
30
+ - README.md
31
+ - Rakefile
31
32
  - bin/pushdeploy_create_config
32
33
  - bin/pushdeploy_install_hook
34
+ - lib/pushdeploy/pushdeploy.rb
35
+ - lib/pushdeploy/version.rb
36
+ - pushdeploy.gemspec
33
37
  homepage: ""
34
38
  licenses: []
35
39
 
data/bin/pushdeploy DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
- $:.push File.expand_path("../../lib", __FILE__)
3
-
4
- require 'pushdeploy'
File without changes