Skip to content

Commit

Permalink
fixed a problem causing the gemfile not to be located, bumping versio…
Browse files Browse the repository at this point in the history
…n as the previous shouldn't be used
  • Loading branch information
Mario Visic committed Aug 23, 2010
1 parent 14b622f commit 22a86f3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,5 +1,9 @@
== Change Log

=== 0.1.6 (August 24, 2010)

* Fixed a bug that caused problems locating the Gemfile [Josh French, Mario Visic]

=== 0.1.5 (August 24, 2010)

* Altered the version grabbing of gems to be more thorough and precise [Mario Visic]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.1.5
0.1.6
2 changes: 1 addition & 1 deletion lib/radiant-go/installers/main.rb
Expand Up @@ -14,7 +14,7 @@ def initialize(name)

# setup default gemfile location
if File.exists?(@project_name + '/Gemfile')
Config.gemfile_location = @project_name + '/Gemfile'
Config.gemfile_location = File.expand_path(@project_name) + '/Gemfile'
else
Config.gemfile_location = File.expand_path(File.dirname(__FILE__)) + '/../../../config/Gemfile'
end
Expand Down
2 changes: 1 addition & 1 deletion radiant-go.gemspec
Expand Up @@ -5,7 +5,7 @@

Gem::Specification.new do |s|
s.name = %q{radiant-go}
s.version = "0.1.5"
s.version = "0.1.6"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["squaretalent"]
Expand Down

0 comments on commit 22a86f3

Please sign in to comment.