Skip to content

Commit

Permalink
update rake + setup yard
Browse files Browse the repository at this point in the history
  • Loading branch information
kares committed Jun 27, 2013
1 parent e9a2c5a commit afc1f50
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -24,4 +24,5 @@ test*.db
*test_*.out
test/jars/*.jar
jndi_test/jdbc/.bindings
.disable-appraisal-hint
.disable-appraisal-hint
.yardoc
4 changes: 4 additions & 0 deletions .yardopts
@@ -0,0 +1,4 @@
--markup=markdown --markup-provider=kramdown
--plugin method-overrides
--title "ActiveRecord JDBC Adapter"
--no-private --protected lib/**/*.rb - README.md RUNNING_TESTS.md LICENSE.txt
7 changes: 6 additions & 1 deletion Gemfile
Expand Up @@ -4,7 +4,12 @@ gem 'activerecord'
gem 'jruby-openssl', :platform => :jruby

group :development do
gem 'ruby-debug', :require => nil
gem 'ruby-debug', :group => :development, :require => nil # if ENV['DEBUG']
group :doc do
gem 'yard', :require => nil
gem 'yard-method-overrides', :github => 'kares/yard-method-overrides', :require => nil
gem 'kramdown', :require => nil
end
end

gem 'appraisal', :require => nil
Expand Down
14 changes: 13 additions & 1 deletion Gemfile.lock
@@ -1,3 +1,10 @@
GIT
remote: git://github.com/kares/yard-method-overrides.git
revision: 7b4967860c997920ab6184a0bab7aa6b68f195a1
specs:
yard-method-overrides (0.2.0)
yard (>= 0.7.0)

GEM
remote: https://rubygems.org/
specs:
Expand Down Expand Up @@ -37,6 +44,7 @@ GEM
journey (1.0.4)
jruby-openssl (0.8.8)
bouncy-castle-java (>= 1.5.0147)
kramdown (1.0.2)
linecache (0.46)
rbx-require-relative (> 0.0.4)
metaclass (0.0.1)
Expand All @@ -48,7 +56,7 @@ GEM
rack (>= 0.4)
rack-test (0.6.2)
rack (>= 1.0)
rake (10.0.4)
rake (10.1.0)
rbx-require-relative (0.0.9)
ruby-debug (0.10.4)
columnize (>= 0.1)
Expand All @@ -70,6 +78,7 @@ GEM
test-unit (>= 2.4.0)
tilt (1.3.6)
tzinfo (0.3.37)
yard (0.8.6.1)

PLATFORMS
java
Expand All @@ -82,9 +91,12 @@ DEPENDENCIES
bcrypt-ruby (~> 3.0.0)
erubis
jruby-openssl
kramdown
mocha (>= 0.13.0)
rake
ruby-debug
simplecov
test-unit (= 2.5.4)
test-unit-context
yard
yard-method-overrides!

0 comments on commit afc1f50

Please sign in to comment.