heroku_san 1.0.0 → 1.0.2

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/README.rdoc CHANGED
@@ -9,7 +9,6 @@ Helpful rake tasks for Heroku.
9
9
  Add this to your Gemfile:
10
10
 
11
11
  group :development do
12
- gem 'heroku'
13
12
  gem 'heroku_san'
14
13
  end
15
14
 
data/Rakefile CHANGED
@@ -6,9 +6,12 @@ begin
6
6
  gem.name = "heroku_san"
7
7
  gem.summary = %Q{A bunch of useful Rake tasks for managing your Heroku apps}
8
8
  gem.description = %Q{Manage multiple Heroku instances/apps for a single Rails app using Rake}
9
- gem.email = "glenn.roberts@siyelo.com"
9
+ gem.email = "elijah.miller@gmail.com"
10
10
  gem.homepage = "http://github.com/glennr/heroku_san"
11
11
  gem.authors = ["Elijah Miller", "Glenn Roberts"]
12
+ gem.files = Dir["{lib}/**/*", "VERSION", "LICENSE", "CHANGELOG", "TODO", "README.rdoc", "Rakefile"]
13
+ gem.extra_rdoc_files = []
14
+ gem.add_dependency("heroku")
12
15
  end
13
16
  Jeweler::GemcutterTasks.new
14
17
  rescue LoadError
@@ -16,4 +19,4 @@ rescue LoadError
16
19
  end
17
20
 
18
21
  desc 'Default: build gem.'
19
- task :default => :build
22
+ task :default => :build
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.2
@@ -1,9 +1,10 @@
1
+ require 'heroku_san'
1
2
  require 'rails'
2
3
 
3
4
  module HerokuSan
4
5
  class Railtie < Rails::Railtie
5
6
  rake_tasks do
6
- load File.join(File.dirname(__FILE__), 'tasks.rb')
7
+ load 'heroku_san/tasks.rb'
7
8
  end
8
9
  end
9
- end
10
+ end
data/lib/heroku_san.rb CHANGED
@@ -1 +1 @@
1
- require 'heroku_san/railtie' if defined?(Rails)
1
+ require 'heroku_san/railtie.rb' if defined?(Rails) && Rails::VERSION::MAJOR == 3
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heroku_san
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 2
10
+ version: 1.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Elijah Miller
@@ -16,30 +16,38 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-10-02 00:00:00 -04:00
19
+ date: 2010-10-22 00:00:00 -04:00
20
20
  default_executable:
21
- dependencies: []
22
-
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ name: heroku
24
+ prerelease: false
25
+ requirement: &id001 !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ hash: 3
31
+ segments:
32
+ - 0
33
+ version: "0"
34
+ type: :runtime
35
+ version_requirements: *id001
23
36
  description: Manage multiple Heroku instances/apps for a single Rails app using Rake
24
- email: glenn.roberts@siyelo.com
37
+ email: elijah.miller@gmail.com
25
38
  executables: []
26
39
 
27
40
  extensions: []
28
41
 
29
- extra_rdoc_files:
30
- - LICENSE
31
- - README.rdoc
32
- - TODO
42
+ extra_rdoc_files: []
43
+
33
44
  files:
34
- - .gitignore
35
45
  - CHANGELOG
36
46
  - LICENSE
37
47
  - README.rdoc
38
48
  - Rakefile
39
49
  - TODO
40
50
  - VERSION
41
- - heroku_san.gemspec
42
- - install.rb
43
51
  - lib/heroku_san.rb
44
52
  - lib/heroku_san/railtie.rb
45
53
  - lib/heroku_san/tasks.rb
data/.gitignore DELETED
@@ -1,3 +0,0 @@
1
- doc
2
- pkg
3
- Thumbs.db
data/heroku_san.gemspec DELETED
@@ -1,52 +0,0 @@
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_san}
8
- s.version = "1.0.0"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Elijah Miller", "Glenn Roberts"]
12
- s.date = %q{2010-10-02}
13
- s.description = %q{Manage multiple Heroku instances/apps for a single Rails app using Rake}
14
- s.email = %q{glenn.roberts@siyelo.com}
15
- s.extra_rdoc_files = [
16
- "LICENSE",
17
- "README.rdoc",
18
- "TODO"
19
- ]
20
- s.files = [
21
- ".gitignore",
22
- "CHANGELOG",
23
- "LICENSE",
24
- "README.rdoc",
25
- "Rakefile",
26
- "TODO",
27
- "VERSION",
28
- "heroku_san.gemspec",
29
- "install.rb",
30
- "lib/heroku_san.rb",
31
- "lib/heroku_san/railtie.rb",
32
- "lib/heroku_san/tasks.rb",
33
- "lib/tasks/heroku.rake",
34
- "lib/templates/heroku.example.yml"
35
- ]
36
- s.homepage = %q{http://github.com/glennr/heroku_san}
37
- s.rdoc_options = ["--charset=UTF-8"]
38
- s.require_paths = ["lib"]
39
- s.rubygems_version = %q{1.3.7}
40
- s.summary = %q{A bunch of useful Rake tasks for managing your Heroku apps}
41
-
42
- if s.respond_to? :specification_version then
43
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
44
- s.specification_version = 3
45
-
46
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
47
- else
48
- end
49
- else
50
- end
51
- end
52
-
data/install.rb DELETED
@@ -1,2 +0,0 @@
1
- # Install hook code here
2
- system('rake heroku:create_config')