Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
parix committed Oct 15, 2014
1 parent 2df0db6 commit e1f46db
Show file tree
Hide file tree
Showing 61 changed files with 64,888 additions and 388 deletions.
11 changes: 7 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
source "https://rubygems.org"

gem "rake", "10.1.1"
gem "rspec", "2.14.1"
gem "webmock", "1.15.2"
gem "vcr", "2.8.0"
gem "coveralls", "0.7.0", require: false

group :test do
gem "rspec", "3.1.0"
gem "vcr", "2.9.3"
gem "webmock", "1.15.2"
gem "coveralls", "0.7.0", require: false
end
19 changes: 15 additions & 4 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
require "bundler/gem_tasks"
require "rspec/core/rake_task"

desc "Default: run specs."
task :default => [:spec]

desc "Run specs"
RSpec::Core::RakeTask.new do |t|
t.pattern = "./spec/**/*_spec.rb"
end

desc "Open an irb session preloaded with this library"
task :console do
ENV["RUBY_ENV"] ||= "development"
sh "irb -I lib -r gw2"
ENV["RUBY_ENV"] ||= "development"
p ENV["dry_run"]
p ENV["dry_run"] == true
sh "irb -I lib -r gw2"
end

require "bundler/gem_tasks"
5 changes: 5 additions & 0 deletions coverage/.last_run.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"result": {
"covered_percent": 100.0
}
}
Loading

0 comments on commit e1f46db

Please sign in to comment.