Skip to content

Commit

Permalink
Support only recent rubies
Browse files Browse the repository at this point in the history
  • Loading branch information
benlangfeld committed Jan 9, 2016
1 parent 784610d commit 5a1d507
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby
- 2.2.0
- 2.3.0
- jruby-9.0.4.0
- rbx-2.1.1
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-2.1.1
notifications:
irc: "irc.freenode.org#adhearsion"
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# [develop](https://github.com/adhearsion/ruby_ami)
* Breaking change: Ruby 1.9 is no longer supported. Minimum supported versions are Ruby 2.2.0 and JRuby 9.0.0.0
* Breaking change: Removed the deprecated `RubyAMI::Client` because it is no longer relevant.
* Breaking change: Start the connection when the `RubyAMI::Stream` starts, permitting supervised restart of the stream on connection failure. To support this, the event callback now passes a second parameter which is the stream itself.

Expand Down
2 changes: 2 additions & 0 deletions ruby_ami.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Gem::Specification.new do |s|

s.rubyforge_project = "ruby_ami"

s.required_ruby_version = '>= 2.2.0'

s.files = `git ls-files`.split("\n") << 'lib/ruby_ami/lexer.rb'
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
Expand Down

0 comments on commit 5a1d507

Please sign in to comment.