bougyman-autumn 3.1.7 → 3.1.8

Sign up to get free protection for your applications and to get access to all the features.
data/AUTHORS CHANGED
@@ -2,7 +2,7 @@ Following persons have contributed to autumn.
2
2
  (Sorted by number of submitted patches, then alphabetically)
3
3
 
4
4
  113 Tim Morgan <riscfuture@gmail.com>
5
- 24 TJ Vanderpoel <bougy.man@gmail.com>
5
+ 25 TJ Vanderpoel <bougy.man@gmail.com>
6
6
  3 Dale Campbell <dale@save-state.net>
7
7
  1 bterlson <btthalion@gmail.com>
8
8
  1 comboy <kacper.ciesla@gmail.com>
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ [dd5f58e | Sun May 03 16:32:34 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
2
+
3
+ * Version 3.1.7
4
+
1
5
  [c9ca0ce | Sun May 03 16:31:13 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
2
6
 
3
7
  * clarified autumn command documentation
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{autumn}
5
- s.version = "3.1.7"
5
+ s.version = "3.1.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Tim 'riscfuture' Morgan"]
@@ -1,6 +1,8 @@
1
1
  require "pathname"
2
2
  module Autumn
3
- ROOT = Pathname.new(__FILE__).dirname.expand_path
3
+ unless Autumn.const_defined?("ROOT")
4
+ ROOT = Pathname.new(__FILE__).dirname.expand_path
5
+ end
4
6
  end
5
7
  $LOAD_PATH.unshift Autumn::ROOT
6
8
  require "autumn/version"
@@ -1,3 +1,3 @@
1
1
  module Autumn
2
- VERSION = "3.1.7"
2
+ VERSION = "3.1.8"
3
3
  end
@@ -8,7 +8,7 @@ namespace :release do
8
8
  puts <<INSTRUCTIONS
9
9
  First add the relevant files:
10
10
 
11
- git add MANIFEST CHANGELOG #{name}.gemspec lib/#{name}/version.rb
11
+ git add AUTHORS MANIFEST CHANGELOG #{name}.gemspec lib/#{name}/version.rb
12
12
 
13
13
  Then commit them, tag the commit, and push:
14
14
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bougyman-autumn
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.7
4
+ version: 3.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim 'riscfuture' Morgan