Skip to content

Commit

Permalink
Add gem building and skip the gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
raggi committed May 24, 2011
1 parent e2e804a commit ab5b7e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Rakefile
Expand Up @@ -22,3 +22,8 @@ RDoc::Task.new(:rdoc) do |rdoc|
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/**/*.rb')
end

desc "build gem"
task :gem do
sh "gem build openid_active_record_store.gemspec"
end
2 changes: 1 addition & 1 deletion openid_active_record_store.gemspec
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |s|
s.summary = 'An ActiveRecord store for OpenID'
s.description = 'An ActiveRecord store for OpenID, forked from its original author for rails 3 support'

s.files = `git ls-files` - %w[.gitignore]
s.files = `git ls-files` - %W[.gitignore #{File.basename __FILE__}]

if s.respond_to? :specification_version then
s.specification_version = 3
Expand Down

0 comments on commit ab5b7e7

Please sign in to comment.