Skip to content

Commit

Permalink
add dummy spec
Browse files Browse the repository at this point in the history
  • Loading branch information
Genki Sugawara committed Dec 14, 2013
1 parent 00f95d0 commit edb875c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--require spec_helper
--colour
6 changes: 5 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
require "bundler/gem_tasks"
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new('spec')
task :default => :spec
1 change: 1 addition & 0 deletions ddbcli.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ Gem::Specification.new do |spec|
spec.add_dependency 'json'
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '>= 2.14.1'
end
5 changes: 5 additions & 0 deletions spec/ddbcli_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
describe 'ddbcli' do
it 'version' do
expect(1).to eq(1)
end
end
Empty file added spec/spec_helper.rb
Empty file.

0 comments on commit edb875c

Please sign in to comment.