diff --git a/Gemfile.lock b/Gemfile.lock index 451cefa..35a1170 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - embiggen (0.2.0) + embiggen (1.0.0) addressable (~> 2.3) GEM diff --git a/README.md b/README.md index ed45dee..28b31c9 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,20 @@ # Embiggen [![Build Status](https://travis-ci.org/altmetric/embiggen.svg?branch=master)](https://travis-ci.org/altmetric/embiggen) -**This branch describes the unreleased 1.x version of Embiggen, see the -[master branch](https://github.com/altmetric/embiggen) for the current stable -version.** - A Ruby library to expand shortened URLs. -**Current version:** 0.2.0 +**Current version:** 1.0.0 **Supported Ruby versions:** 1.8.7, 1.9.2, 1.9.3, 2.0, 2.1, 2.2 ## Installation ``` -gem install embiggen -v '~> 0.2' +gem install embiggen -v '~> 1.0' ``` Or, in your `Gemfile`: ```ruby -gem 'embiggen', '~> 0.2' +gem 'embiggen', '~> 1.0' ``` ## Usage diff --git a/embiggen.gemspec b/embiggen.gemspec index 037c87d..dbee8a0 100644 --- a/embiggen.gemspec +++ b/embiggen.gemspec @@ -1,13 +1,13 @@ Gem::Specification.new do |s| s.name = 'embiggen' - s.version = '0.2.0' + s.version = '1.0.0' s.summary = 'A library to expand shortened URLs' s.description = <<-EOF A library to expand shortened URIs, respecting timeouts, following multiple redirects and leaving unshortened URIs intact. EOF s.license = 'MIT' - s.authors = ['Paul Mucur'] + s.authors = ['Paul Mucur', 'Jonathan Hernandez'] s.email = 'support@altmetric.com' s.homepage = 'https://github.com/altmetric/embiggen' s.files = %w(README.md LICENSE) + Dir['lib/**/*.rb']