Skip to content

Commit

Permalink
gemspec & bundler rake tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Cichra committed Aug 11, 2012
1 parent dc012fc commit 8dcec18
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .gitignore
@@ -1,6 +1,9 @@
config/irc.yml
config/database.yml
config/redis.yml
config/plugins.yml
/config/irc.yml
/config/database.yml
/config/redis.yml
/config/plugins.yml

/pkg/

.*.swp
*.rdb
4 changes: 4 additions & 0 deletions Rakefile
@@ -1,3 +1,7 @@
namespace :gem do
require "bundler/gem_tasks"
end

task :integrate do |task|
ENV['OCTOBER_ENV'] ||= 'test'
exec 'rspec spec'
Expand Down
2 changes: 1 addition & 1 deletion october.gemspec
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
gem.homepage = "https://github.com/mikz/october"

gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n") - %w{.rvmrc .travis.yml Guardfile Gemfile.lock}
gem.files = `git ls-files`.split("\n") - %w{.gitignore .rvmrc .travis.yml Guardfile Gemfile.lock}
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "october"
gem.require_paths = ["lib", "plugins"]
Expand Down

0 comments on commit 8dcec18

Please sign in to comment.