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

Drop support for ruby 1.9.3 #240

Merged
merged 1 commit into from
Dec 1, 2015
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
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
# optional
- 2.3.0-preview1
- ruby-head
- jruby-19mode
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, shoot. I merged this too soon. We should get rid of this also.

- jruby-head
Expand All @@ -21,6 +21,7 @@ script: bundle exec rake ci

matrix:
allow_failures:
- rvm: 2.3.0-preview1
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we still get rid of this even if it is allowed to fail ? @jch

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can skip the previews since we already include Ruby-head

- rvm: ruby-head
- rvm: jruby-19mode
- rvm: jruby-head
Expand Down
2 changes: 1 addition & 1 deletion net-ldap.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ the most recent LDAP RFCs (4510-4519, plutions of 4520-4532).}
s.homepage = %q{http://github.com/ruby-ldap/ruby-net-ldap}
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.required_ruby_version = ">= 1.9.3"
s.required_ruby_version = ">= 2.0.0"
s.summary = %q{Net::LDAP for Ruby (also called net-ldap) implements client access for the Lightweight Directory Access Protocol (LDAP), an IETF standard protocol for accessing distributed directory services}

s.add_development_dependency("flexmock", "~> 1.3")
Expand Down