Skip to content

Commit

Permalink
[core] fixing gemspec for 1.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Rames committed Apr 1, 2014
1 parent 6fd4c68 commit dfa2e42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ require "tasks/changelog_task"
Fog::Rake::ChangelogTask.new

require "tasks/github_release_task"
Fog::Rake::GithubReleaseTask.new

task :coveralls_push_workaround do
use_coveralls = (Gem::Version.new(RUBY_VERSION) > Gem::Version.new('1.9.2'))
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile-ruby-1.8.7
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ group :development, :test do
# This is here because gemspec doesn't support require: false
gem 'coveralls', :require => false
gem "netrc", :require => false
gem "octokit", :require => false
gem "octokit", '~> 2.7.2', :require => false
gem 'rake', '~> 10.1.0'
end

Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/github_release_task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module Fog
module Rake
class ChangelogTask < ::Rake::TaskLib
class GithubReleaseTask < ::Rake::TaskLib

def initialize
desc "Update the changelog since the last release"
Expand Down

0 comments on commit dfa2e42

Please sign in to comment.