mirror of
https://github.com/lloeki/rebel.git
synced 2025-12-06 01:54:40 +01:00
Rakefile w/ test+gem tasks
This commit is contained in:
parent
8ae604557b
commit
934e72b00f
5 changed files with 19 additions and 5 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/pkg/
|
||||
3
Gemfile
3
Gemfile
|
|
@ -2,6 +2,7 @@ source 'https://rubygems.org'
|
|||
|
||||
gemspec
|
||||
|
||||
gem 'rubocop'
|
||||
gem 'minitest'
|
||||
gem 'pry'
|
||||
gem 'rake'
|
||||
gem 'rubocop'
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ GEM
|
|||
method_source (~> 0.8.1)
|
||||
slop (~> 3.4)
|
||||
rainbow (2.2.1)
|
||||
rake (12.0.0)
|
||||
rubocop (0.47.1)
|
||||
parser (>= 2.3.3.1, < 3.0)
|
||||
powerpack (~> 0.1)
|
||||
|
|
@ -34,6 +35,7 @@ PLATFORMS
|
|||
DEPENDENCIES
|
||||
minitest
|
||||
pry
|
||||
rake
|
||||
rebel!
|
||||
rubocop
|
||||
|
||||
|
|
|
|||
10
Rakefile
Normal file
10
Rakefile
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
require 'rake/testtask'
|
||||
require 'bundler'
|
||||
|
||||
Bundler::GemHelper.install_tasks
|
||||
|
||||
Rake::TestTask.new do |t|
|
||||
t.libs << 'test'
|
||||
t.test_files = FileList['test/test_*.rb']
|
||||
t.verbose = true
|
||||
end
|
||||
|
|
@ -2,10 +2,10 @@ Gem::Specification.new do |s|
|
|||
s.name = 'rebel'
|
||||
s.version = '0.1.0'
|
||||
s.licenses = ['MIT']
|
||||
s.summary = "Fight against the Object tyranny"
|
||||
s.description = "Write SQL queries in Ruby, or is it the other way around?"
|
||||
s.authors = ["Loic Nageleisen"]
|
||||
s.summary = 'Fight against the Object tyranny'
|
||||
s.description = 'Write SQL queries in Ruby, or is it the other way around?'
|
||||
s.authors = ['Loic Nageleisen']
|
||||
s.email = 'loic.nageleisen@gmail.com'
|
||||
s.files = ["lib/**/*.rb"]
|
||||
s.files = Dir['lib/**/*.rb']
|
||||
s.homepage = 'https://github.com/lloeki/rebel.git'
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue