Skip to content

Commit

Permalink
Merge pull request #36 from phrase/remove-old-nokogiri
Browse files Browse the repository at this point in the history
Set ruby 2.1 as minimum version
  • Loading branch information
theSoenke committed Apr 19, 2018
2 parents d1ee11a + 856f77a commit ae06b32
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: ruby
rvm:
- "2.0"
- "2.1.10"
- "2.2.6"
- "2.3.3"
- "2.4.0"
- "2.5.1"
script: bundle exec rspec spec
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [v1.3.0](https://github.com/phrase/phraseapp-in-context-editor-ruby/tree/v1.3.0) (2018-04-18)
[Full Changelog](https://github.com/phrase/phraseapp-in-context-editor-ruby/compare/v1.2.1...v1.3.0)
- Remove support for Ruby < 2.1

## [v1.2.1](https://github.com/phrase/phraseapp-in-context-editor-ruby/tree/v1.2.1) (2017-03-13)
[Full Changelog](https://github.com/phrase/phraseapp-in-context-editor-ruby/compare/v1.2.0...v1.2.1)

Expand Down
2 changes: 1 addition & 1 deletion lib/phraseapp-in-context-editor-ruby/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module PhraseApp
module InContextEditor
VERSION = "1.2.1"
VERSION = "1.3.0"
end
end
9 changes: 1 addition & 8 deletions phraseapp-in-context-editor-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Gem::Specification.new do |s|
s.name = "phraseapp-in-context-editor-ruby"
s.version = PhraseApp::InContextEditor::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.1'
s.authors = ["Dynport GmbH"]
s.email = ["[email protected]"]
s.homepage = "https://phraseapp.com"
Expand All @@ -32,14 +33,6 @@ Gem::Specification.new do |s|
s.add_development_dependency('webmock', '~> 1.21')
s.add_development_dependency('vcr', '~> 2.9')
s.add_development_dependency('timecop', '~> 0.7')
if RUBY_VERSION < '2.0'
s.add_development_dependency('public_suffix', '< 1.5')
s.add_development_dependency('octokit', '< 4')
end
if RUBY_VERSION < '2.1'
s.add_development_dependency('nokogiri', '< 1.7')
s.add_development_dependency('faraday-http-cache', '< 2')
end
if RUBY_VERSION < '2.2'
s.add_development_dependency('mime-types', '< 3.0') # for 1.9.3 to work
s.add_development_dependency('rails', '~> 4.2')
Expand Down

0 comments on commit ae06b32

Please sign in to comment.