katana 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Katana
2
2
 
3
- Simple multi-environment deployment for Heroku
3
+ Manage multiple environments on Heroku with ease!
4
4
 
5
5
  This project was greatly inspired by [Capistrano](https://github.com/capistrano/capistrano) and [Heroku San](https://github.com/fastestforward/heroku_san).
6
6
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{katana}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Andrew Kane"]
@@ -19,8 +19,6 @@ Gem::Specification.new do |s|
19
19
  "README.md"
20
20
  ]
21
21
  s.files = [
22
- ".document",
23
- ".rspec",
24
22
  "Gemfile",
25
23
  "Gemfile.lock",
26
24
  "LICENSE.txt",
@@ -30,7 +28,6 @@ Gem::Specification.new do |s|
30
28
  "bin/kat",
31
29
  "katana.gemspec",
32
30
  "lib/katana.rb",
33
- "spec/katana_spec.rb",
34
31
  "spec/spec_helper.rb"
35
32
  ]
36
33
  s.homepage = %q{http://github.com/ankane/katana}
@@ -39,7 +36,6 @@ Gem::Specification.new do |s|
39
36
  s.rubygems_version = %q{1.3.7}
40
37
  s.summary = %q{Katana - Simple multi-environment deployment for Heroku}
41
38
  s.test_files = [
42
- "spec/katana_spec.rb",
43
39
  "spec/spec_helper.rb"
44
40
  ]
45
41
 
@@ -1,6 +1,5 @@
1
1
  require "heroku"
2
2
  require "yaml"
3
- require "rake"
4
3
 
5
4
  module Katana
6
5
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Andrew Kane
@@ -100,8 +100,6 @@ extra_rdoc_files:
100
100
  - LICENSE.txt
101
101
  - README.md
102
102
  files:
103
- - .document
104
- - .rspec
105
103
  - Gemfile
106
104
  - Gemfile.lock
107
105
  - LICENSE.txt
@@ -111,7 +109,6 @@ files:
111
109
  - bin/kat
112
110
  - katana.gemspec
113
111
  - lib/katana.rb
114
- - spec/katana_spec.rb
115
112
  - spec/spec_helper.rb
116
113
  has_rdoc: true
117
114
  homepage: http://github.com/ankane/katana
@@ -127,7 +124,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
127
124
  requirements:
128
125
  - - ">="
129
126
  - !ruby/object:Gem::Version
130
- hash: -230000859882304633
127
+ hash: -1196545310837868385
131
128
  segments:
132
129
  - 0
133
130
  version: "0"
@@ -147,5 +144,4 @@ signing_key:
147
144
  specification_version: 3
148
145
  summary: Katana - Simple multi-environment deployment for Heroku
149
146
  test_files:
150
- - spec/katana_spec.rb
151
147
  - spec/spec_helper.rb
data/.document DELETED
@@ -1,5 +0,0 @@
1
- lib/**/*.rb
2
- bin/*
3
- -
4
- features/**/*.feature
5
- LICENSE.txt
data/.rspec DELETED
@@ -1 +0,0 @@
1
- --color
@@ -1,7 +0,0 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
-
3
- describe "Katana" do
4
- it "fails" do
5
- fail "hey buddy, you should probably rename this file and start specing for real"
6
- end
7
- end