8000 Improve some documentation and start testing our documentation examples by michaelherold · Pull Request #421 · hashie/hashie · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Improve some documentation and start testing our documentation examples #421

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.sw?
.DS_Store
coverage
doc/
rdoc
pkg
*.gem
Expand Down
7 changes: 6 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,17 @@ gemspec

group :development do
gem 'benchmark-ips'
gem 'inch'
gem 'pry'
gem 'pry-stack_explorer', platforms: [:ruby_19, :ruby_20, :ruby_21]
gem 'rubocop', '0.34.2'
gem 'guard', '~> 2.6.1'
gem 'guard', '~> 2.14'
gem 'guard-inch'
gem 'guard-rspec', '~> 4.3.1', require: false
gem 'guard-yield', '~> 0.1.0', require: false
gem 'yard'
gem 'yardstick'
gem 'yard-doctest'
end

group :test do
Expand Down
4 changes: 4 additions & 0 deletions Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ run_all = lambda do |*|
run_all_integration_specs(logger: ->(msg) { Compat::UI.info(msg) })
end

guard :inch do
watch(%r{lib/.+\.rb})
end

guard 'rspec', all_on_start: false, cmd: 'bundle exec rspec', run_all: { cmd: 'bundle exec rspec --exclude-pattern "spec/integration/**/*_spec.rb"' } do
watch(%r{^spec(?!/integration)/.+_spec\.rb})
watch(%r{^lib/(.+)\.rb}) { |m| "spec/#{m[1]}_spec.rb" }
Expand Down
Loading
0