Skip to content

Commit

Permalink
Bump firebase-rb to 0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentwoo committed Jan 28, 2018
1 parent 85a5145 commit f700437
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.2.8

* Fix [auth token expiration](https://github.com/oscardelben/firebase-ruby/pull/84) on longer lived Firebase objects.

## 0.2.7

* Support newer Firebase [authentication method](https://github.com/oscardelben/firebase-ruby/pull/81)
Expand Down
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

13 changes: 9 additions & 4 deletions firebase.gemspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'firebase/version'

Gem::Specification.new do |s|
s.name = "firebase"
s.version = "0.2.7"
s.version = Firebase::VERSION

s.require_paths = ["lib"]
s.authors = ["Oscar Del Ben"]
s.date = "2015-11-26"
s.authors = ["Oscar Del Ben", "Vincent Woo"]
s.date = "2018-01-28"
s.description = "Firebase wrapper for Ruby"
s.email = "[email protected]"
s.extra_rdoc_files = [
Expand All @@ -15,7 +19,8 @@ Gem::Specification.new do |s|
s.files = [
"lib/firebase.rb",
"lib/firebase/response.rb",
"lib/firebase/server_value.rb"
"lib/firebase/server_value.rb",
"lib/firebase/version.rb"
]
s.homepage = "http://github.com/oscardelben/firebase-ruby"
s.licenses = ["MIT"]
Expand Down
3 changes: 3 additions & 0 deletions lib/firebase/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module Firebase
VERSION = '0.2.8'.freeze
end

0 comments on commit f700437

Please sign in to comment.