heroku_deploy 0.0.0 → 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 +1 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/heroku_deploy.iml +9 -0
- data/.idea/misc.xml +11 -0
- data/.idea/modules.xml +9 -0
- data/.idea/vcs.xml +8 -0
- data/VERSION +1 -1
- data/heroku_deploy.gemspec +52 -0
- data/lib/heroku_deploy.rb +1 -0
- data/lib/{heroku_deploy.rake → tasks/heroku_deploy.rake} +0 -0
- metadata +12 -4
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
.idea
|
data/.idea/encodings.xml
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="NewModuleRootManager">
|
4
|
+
<content url="file://$MODULE_DIR$" />
|
5
|
+
<orderEntry type="inheritedJdk" />
|
6
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
7
|
+
</component>
|
8
|
+
</module>
|
9
|
+
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="DependencyValidationManager">
|
4
|
+
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
|
5
|
+
</component>
|
6
|
+
<component name="ProjectDetails">
|
7
|
+
<option name="projectName" value="heroku_deploy" />
|
8
|
+
</component>
|
9
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="Ruby SDK 1.8.7 (/opt/local/bin/ruby)" project-jdk-type="RUBY_SDK" />
|
10
|
+
</project>
|
11
|
+
|
data/.idea/modules.xml
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/heroku_deploy.iml" filepath="$PROJECT_DIR$/.idea/heroku_deploy.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
9
|
+
|
data/.idea/vcs.xml
ADDED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.1
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{heroku_deploy}
|
8
|
+
s.version = "0.0.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Ross Hale", "Chris Lemcke"]
|
12
|
+
s.date = %q{2010-06-29}
|
13
|
+
s.description = %q{Deploy strategy and scripts for Heroku.}
|
14
|
+
s.email = %q{rosshale@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"README.markdown"
|
17
|
+
]
|
18
|
+
s.files = [
|
19
|
+
".gitignore",
|
20
|
+
".idea/encodings.xml",
|
21
|
+
".idea/heroku_deploy.iml",
|
22
|
+
".idea/misc.xml",
|
23
|
+
".idea/modules.xml",
|
24
|
+
".idea/vcs.xml",
|
25
|
+
"README.markdown",
|
26
|
+
"Rakefile",
|
27
|
+
"VERSION",
|
28
|
+
"config/heroku_deploy.yml",
|
29
|
+
"heroku_deploy.gemspec",
|
30
|
+
"lib/heroku_deploy.rb",
|
31
|
+
"lib/tasks/heroku_deploy.rake"
|
32
|
+
]
|
33
|
+
s.homepage = %q{http://github.com/lottay/heroku_deploy}
|
34
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
35
|
+
s.require_paths = ["lib"]
|
36
|
+
s.rubygems_version = %q{1.3.7}
|
37
|
+
s.summary = %q{initial import}
|
38
|
+
|
39
|
+
if s.respond_to? :specification_version then
|
40
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
41
|
+
s.specification_version = 3
|
42
|
+
|
43
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
44
|
+
s.add_development_dependency(%q<heroku>, [">= 0"])
|
45
|
+
else
|
46
|
+
s.add_dependency(%q<heroku>, [">= 0"])
|
47
|
+
end
|
48
|
+
else
|
49
|
+
s.add_dependency(%q<heroku>, [">= 0"])
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].each { |ext| load ext }
|
File without changes
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: heroku_deploy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 29
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ross Hale
|
@@ -42,11 +42,19 @@ extensions: []
|
|
42
42
|
extra_rdoc_files:
|
43
43
|
- README.markdown
|
44
44
|
files:
|
45
|
+
- .gitignore
|
46
|
+
- .idea/encodings.xml
|
47
|
+
- .idea/heroku_deploy.iml
|
48
|
+
- .idea/misc.xml
|
49
|
+
- .idea/modules.xml
|
50
|
+
- .idea/vcs.xml
|
45
51
|
- README.markdown
|
46
52
|
- Rakefile
|
47
53
|
- VERSION
|
48
54
|
- config/heroku_deploy.yml
|
49
|
-
-
|
55
|
+
- heroku_deploy.gemspec
|
56
|
+
- lib/heroku_deploy.rb
|
57
|
+
- lib/tasks/heroku_deploy.rake
|
50
58
|
has_rdoc: true
|
51
59
|
homepage: http://github.com/lottay/heroku_deploy
|
52
60
|
licenses: []
|