Skip to content

Commit

Permalink
🎂 ⬆️ Bump Ruby, StringUtility, and Oj
Browse files Browse the repository at this point in the history
  • Loading branch information
elifoster committed Mar 1, 2017
1 parent 28a1532 commit d8445a5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog
## Version 2
### Version 2.0.1
* Update StringUtility to version 3

### Version 2.0.0
* Complete rewrite of the gem. Includes the following changes:
* SimpleGeolocator is no longer a helper module containing methods for every type of data. Now, you call the
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ gem('curb', '~> 0.9')
gem('data_types', '~> 1')
gem('oj', '~> 2')
gem('rainbow', '~> 2')
gem('string-utility', '~> 2')
gem('string-utility', '~> 3')

ruby '2.3.0'
ruby '2.4.0'
11 changes: 7 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ GEM
specs:
curb (0.9.3)
data_types (1.1.1)
oj (2.15.0)
oj (2.18.1)
rainbow (2.1.0)
string-utility (2.7.2)
string-utility (3.0.0)

PLATFORMS
ruby
Expand All @@ -15,7 +15,10 @@ DEPENDENCIES
data_types (~> 1)
oj (~> 2)
rainbow (~> 2)
string-utility (~> 2)
string-utility (~> 3)

RUBY VERSION
ruby 2.4.0p0

BUNDLED WITH
1.11.2
1.14.4
4 changes: 2 additions & 2 deletions simple_geolocator.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Gem::Specification.new do |s|
s.authors = ['Eli Foster']
s.name = 'simple_geolocator'
s.summary = 'A Ruby gem for easily using the IP-API.com API to perform IP geolocation.'
s.version = '2.0.0'
s.version = '2.0.1'
s.license = 'MIT'
s.description = <<EOF
Accessing the IP API through Curb. This gem has been made to be as simple to use as possible. As such, it even includes
Expand All @@ -21,7 +21,7 @@ EOF
]
s.executables = 'simplegeo'
s.add_runtime_dependency('rainbow', '~> 2')
s.add_runtime_dependency('string-utility', '~> 2')
s.add_runtime_dependency('string-utility', '~> 3')
s.add_runtime_dependency('curb', '~> 0.9')
s.add_runtime_dependency('oj', '~> 2')
s.add_runtime_dependency('data_types', '~> 1')
Expand Down

0 comments on commit d8445a5

Please sign in to comment.