Skip to content

Commit

Permalink
Merge pull request #12 from sshao/1.1.1/downgrade_ruby_version_depend…
Browse files Browse the repository at this point in the history
…ency

downgrade ruby version dependency
  • Loading branch information
cfis committed Oct 14, 2014
2 parents add8327 + e710d43 commit 933c94b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
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

0 comments on commit 933c94b

Please sign in to comment.