pushit 0.0.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.
- data/.gitignore +4 -0
- data/Gemfile +4 -0
- data/README.md +24 -0
- data/Rakefile +2 -0
- data/lib/push_it.rb +3 -0
- data/lib/push_it/version.rb +3 -0
- data/pushit.gemspec +22 -0
- metadata +91 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
PushIt -- REST deploy service
|
2
|
+
=============================
|
3
|
+
|
4
|
+
* Runs deploys from a remote, centralized server
|
5
|
+
* Works with your existing deploy scripts
|
6
|
+
* Small core, easily extendible with plugins and hooks
|
7
|
+
|
8
|
+
Usage
|
9
|
+
-----
|
10
|
+
|
11
|
+
$ pushit
|
12
|
+
|
13
|
+
Plugins
|
14
|
+
-------
|
15
|
+
|
16
|
+
* pushit-webui -- Web interface for deploying
|
17
|
+
* pushit-capistrano -- Makes your existing Capistrano scripts usable via PushIt
|
18
|
+
* pushit-campfire -- Deploy directly from Campfire
|
19
|
+
* pushit-tracker -- Hooks to update Pivotal Tracker stories with deploy information
|
20
|
+
* pushit-redis -- Record each deploy to Redis
|
21
|
+
* pushit-growl -- Displays growl notifications before and after deploys
|
22
|
+
* pushit-saltnpepa -- Plays a fitting music video during deploys
|
23
|
+
|
24
|
+
_Note:_ None of the above actually exists yet.
|
data/Rakefile
ADDED
data/lib/push_it.rb
ADDED
data/pushit.gemspec
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "push_it/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "pushit"
|
7
|
+
s.version = PushIt::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Noah Davis", "Bryan Helmkamp"]
|
10
|
+
s.email = ["noah.box@gmail.com", "bryan@brynary.com"]
|
11
|
+
s.homepage = ""
|
12
|
+
s.summary = "REST deploy service"
|
13
|
+
s.description = "Runs deploys from a remote, centralized server"
|
14
|
+
|
15
|
+
s.files = `git ls-files`.split("\n")
|
16
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
17
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
18
|
+
|
19
|
+
s.add_dependency "sinatra", "~> 1.2.3"
|
20
|
+
|
21
|
+
s.require_paths = ["lib"]
|
22
|
+
end
|
metadata
ADDED
@@ -0,0 +1,91 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pushit
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Noah Davis
|
14
|
+
- Bryan Helmkamp
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2011-04-20 00:00:00 -04:00
|
20
|
+
default_executable:
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
name: sinatra
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ~>
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 25
|
31
|
+
segments:
|
32
|
+
- 1
|
33
|
+
- 2
|
34
|
+
- 3
|
35
|
+
version: 1.2.3
|
36
|
+
type: :runtime
|
37
|
+
version_requirements: *id001
|
38
|
+
description: Runs deploys from a remote, centralized server
|
39
|
+
email:
|
40
|
+
- noah.box@gmail.com
|
41
|
+
- bryan@brynary.com
|
42
|
+
executables: []
|
43
|
+
|
44
|
+
extensions: []
|
45
|
+
|
46
|
+
extra_rdoc_files: []
|
47
|
+
|
48
|
+
files:
|
49
|
+
- .gitignore
|
50
|
+
- Gemfile
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- lib/push_it.rb
|
54
|
+
- lib/push_it/version.rb
|
55
|
+
- pushit.gemspec
|
56
|
+
has_rdoc: true
|
57
|
+
homepage: ""
|
58
|
+
licenses: []
|
59
|
+
|
60
|
+
post_install_message:
|
61
|
+
rdoc_options: []
|
62
|
+
|
63
|
+
require_paths:
|
64
|
+
- lib
|
65
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
hash: 3
|
71
|
+
segments:
|
72
|
+
- 0
|
73
|
+
version: "0"
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
hash: 3
|
80
|
+
segments:
|
81
|
+
- 0
|
82
|
+
version: "0"
|
83
|
+
requirements: []
|
84
|
+
|
85
|
+
rubyforge_project:
|
86
|
+
rubygems_version: 1.5.2
|
87
|
+
signing_key:
|
88
|
+
specification_version: 3
|
89
|
+
summary: REST deploy service
|
90
|
+
test_files: []
|
91
|
+
|