bard-rake 0.2.1 → 0.3.0

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.3.0
data/bard-rake.gemspec CHANGED
@@ -4,16 +4,14 @@
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
- s.name = %q{bard-rake}
8
- s.version = "0.2.1"
7
+ s.name = "bard-rake"
8
+ s.version = "0.3.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = [%q{Micah Geisel}]
12
- s.date = %q{2011-08-30}
13
- s.description = %q{Rake tasks for all bard projects.
14
- * Bootstrap projects
15
- * Database backup}
16
- s.email = %q{micah@botandrose.com}
11
+ s.authors = ["Micah Geisel"]
12
+ s.date = "2011-10-12"
13
+ s.description = "Rake tasks for all bard projects.\n* Bootstrap projects\n* Database backup"
14
+ s.email = "micah@botandrose.com"
17
15
  s.extra_rdoc_files = [
18
16
  "LICENSE",
19
17
  "README.rdoc"
@@ -30,14 +28,15 @@ Gem::Specification.new do |s|
30
28
  "lib/bard/rake/bootstrap.rb",
31
29
  "lib/bard/rake/bundler.rb",
32
30
  "lib/bard/rake/db.rb",
31
+ "lib/bard/rake/railtie.rb",
33
32
  "spec/bard-rake_spec.rb",
34
33
  "spec/spec.opts",
35
34
  "spec/spec_helper.rb"
36
35
  ]
37
- s.homepage = %q{http://github.com/botandrose/bard-rake}
38
- s.require_paths = [%q{lib}]
39
- s.rubygems_version = %q{1.8.5}
40
- s.summary = %q{Rake tasks for all bard projects.}
36
+ s.homepage = "http://github.com/botandrose/bard-rake"
37
+ s.require_paths = ["lib"]
38
+ s.rubygems_version = "1.8.10"
39
+ s.summary = "Rake tasks for all bard projects."
41
40
 
42
41
  if s.respond_to? :specification_version then
43
42
  s.specification_version = 3
data/lib/bard-rake.rb CHANGED
@@ -1 +1 @@
1
- # NOOP shim. require 'bard/rake' instead
1
+ require "bard/rake/railtie" if defined?(Rails)
@@ -0,0 +1,7 @@
1
+ module BardRake
2
+ class Railtie < Rails::Engine
3
+ rake_tasks do
4
+ load "bard/rake.rb"
5
+ end
6
+ end
7
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bard-rake
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 2
9
- - 1
10
- version: 0.2.1
8
+ - 3
9
+ - 0
10
+ version: 0.3.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Micah Geisel
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-08-30 00:00:00 Z
18
+ date: 2011-10-12 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: rspec
@@ -57,6 +57,7 @@ files:
57
57
  - lib/bard/rake/bootstrap.rb
58
58
  - lib/bard/rake/bundler.rb
59
59
  - lib/bard/rake/db.rb
60
+ - lib/bard/rake/railtie.rb
60
61
  - spec/bard-rake_spec.rb
61
62
  - spec/spec.opts
62
63
  - spec/spec_helper.rb
@@ -89,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
89
90
  requirements: []
90
91
 
91
92
  rubyforge_project:
92
- rubygems_version: 1.8.5
93
+ rubygems_version: 1.8.10
93
94
  signing_key:
94
95
  specification_version: 3
95
96
  summary: Rake tasks for all bard projects.