Skip to content
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

downgrade ruby version dependency #12

Merged
merged 5 commits into from
Oct 14, 2014
Merged
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
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: ruby
rvm:
1.8.7
script: rake compile:libxslt_ruby && rake test
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source 'https://rubygems.org'

# Gem dependencies in gemspec
gemspec
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ RDoc::Task.new("rdoc") do |rdoc|
# Show source inline with line numbers
rdoc.options << "--line-numbers"
# Make the readme file the start page for the generated html
rdoc.options << '--main' << 'README'
rdoc.options << '--main' << 'README.rdoc'
rdoc.rdoc_files.include('doc/*.rdoc',
'ext/**/*.c',
'lib/**/*.rb',
'CHANGES',
'README',
'README.rdoc',
'LICENSE')
end

Expand Down
6 changes: 4 additions & 2 deletions libxslt-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ Gem::Specification.new do |spec|
'ext/vc/*.vcxproj',
'test/**/*'])
spec.test_files = Dir.glob("test/test_*.rb")
spec.add_development_dependency 'rdoc'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rake-compiler'
spec.required_ruby_version = '>= 1.9.3'
spec.required_ruby_version = '>= 1.8.7'
spec.date = DateTime.now
spec.rubyforge_project = 'libxslt-ruby'
end
end