shortify 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ebafabf02946fcee72e8fecd6d30e5596b2a952c
4
+ data.tar.gz: 0d63c82bb6ac27a5336e6d039b471eb07f1d5f29
5
+ SHA512:
6
+ metadata.gz: ce094916bde26368ce6ed79ed3559cd5431e7921490e6e9a8e1e7aab622c97b122efc34e95d9eeb222c0afc1b8f63c8565a4f3db1809607ddc8feb03622d7f2f
7
+ data.tar.gz: 6f19aa0d104fa8d1c31ebac099f5d104a5cf8bfdefd50d534c1515e9ad16db84de90373b48b780f7e267564bd8c2519af83250bd7ad70ebe4b0125fa5c441d90
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,17 @@
1
+ ---
2
+ AllCops:
3
+ Exclude:
4
+ - "bin/*"
5
+ - "vendor/**/*"
6
+
7
+ Style/StringLiterals:
8
+ EnforcedStyle: double_quotes
9
+
10
+ Style/ClassAndModuleChildren:
11
+ EnforcedStyle: compact
12
+
13
+ Style/Documentation:
14
+ Enabled: false
15
+
16
+ Metrics/LineLength:
17
+ Max: 120
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.1
4
+
5
+ before_install:
6
+ - "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
7
+ - gem install bundler
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ group :development, :test do
4
+ gem "rake", "~> 10.0"
5
+ gem "rspec", "~> 3.2"
6
+ gem "rubocop", "~> 0.30"
7
+ gem "vcr", "~> 2.9"
8
+ gem "webmock", "~> 1.21"
9
+ end
10
+
11
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 pseudomuto
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,52 @@
1
+ # Shortify
2
+
3
+ [![Build Status](https://travis-ci.org/shortify/shortify-ruby.svg?branch=master)](https://travis-ci.org/shortify/shortify-ruby)
4
+
5
+ A ruby client library for working with Shortify
6
+
7
+ ## Installation
8
+
9
+ ```ruby
10
+ gem "shortify"
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install shortify
20
+
21
+ ## Usage
22
+
23
+ ```ruby
24
+ def make_short_url(full_url)
25
+ # assumes you're hosting your shortify instance at http://short.ly
26
+ # for SSL, provide the scheme and host. E.g. https://short.ly
27
+ client = Shortify::Client.new("short.ly", "username", "password")
28
+ client.short_url_for(full_url)
29
+ rescue Shortify::Error => e
30
+ # do something with the error
31
+ end
32
+ ```
33
+
34
+ **Error Types**
35
+
36
+ * `Shortify::AuthenticationError` - bad credentials
37
+ * `Shortify::ParamsError` - bad url parameter
38
+ * `Shortify::Error` - anything else
39
+
40
+ ## Development
41
+
42
+ After checking out the repo, run `bin/setup` to install dependencies.
43
+
44
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
45
+
46
+ ## Contributing
47
+
48
+ 1. Fork it ( https://github.com/[my-github-username]/shortify/fork )
49
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
50
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
51
+ 4. Push to the branch (`git push origin my-new-feature`)
52
+ 5. Create a new Pull Request
@@ -0,0 +1,8 @@
1
+ require "bundler/gem_tasks"
2
+ require "rubocop/rake_task"
3
+ require "rspec/core/rake_task"
4
+
5
+ RuboCop::RakeTask.new
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: [:rubocop, :spec]
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "shortify"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,10 @@
1
+ require "httparty"
2
+
3
+ module Shortify
4
+ class Error < StandardError; end
5
+ class AuthenticationError < Error; end
6
+ class ParamsError < Error; end
7
+ end
8
+
9
+ require "shortify/version"
10
+ require "shortify/client"
@@ -0,0 +1,38 @@
1
+ class Shortify::Client
2
+ CREATE_ENDPOINT = "/redirects".freeze
3
+
4
+ attr_reader :base_uri, :username, :password
5
+
6
+ def initialize(base_uri, username, password)
7
+ @base_uri = HTTParty.normalize_base_uri(base_uri)
8
+ @username = username
9
+ @password = password
10
+ end
11
+
12
+ def short_url_for(target_url)
13
+ post_options = options.merge(body: { url: target_url }.to_json)
14
+ response = HTTParty.post(CREATE_ENDPOINT, post_options)
15
+ fail error_for_response(response) unless response.key?("token")
16
+
17
+ URI.parse("#{base_uri}/#{response['token']}") if response.key?("token")
18
+ end
19
+
20
+ private
21
+
22
+ def options
23
+ @options ||= {
24
+ base_uri: base_uri,
25
+ basic_auth: { username: username, password: password }
26
+ }
27
+ end
28
+
29
+ def error_for_response(response)
30
+ message = response["text"]
31
+
32
+ case response["code"].to_i
33
+ when 401 then Shortify::AuthenticationError.new(message)
34
+ when 422 then Shortify::ParamsError.new(message)
35
+ else Shortify::Error.new(message)
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,3 @@
1
+ module Shortify
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "shortify/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "shortify"
8
+ spec.version = Shortify::VERSION
9
+ spec.authors = ["pseudomuto"]
10
+ spec.email = ["david.muto@gmail.com"]
11
+
12
+ spec.summary = "A ruby client library for working with Shortify"
13
+ spec.description = "A ruby client library for working with Shortify"
14
+ spec.homepage = "https://github.com/shortify/shortify-ruby"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_dependency "httparty"
23
+ end
metadata ADDED
@@ -0,0 +1,73 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: shortify
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - pseudomuto
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-05-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: httparty
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: A ruby client library for working with Shortify
28
+ email:
29
+ - david.muto@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".gitignore"
35
+ - ".rspec"
36
+ - ".rubocop.yml"
37
+ - ".travis.yml"
38
+ - CODE_OF_CONDUCT.md
39
+ - Gemfile
40
+ - LICENSE.txt
41
+ - README.md
42
+ - Rakefile
43
+ - bin/console
44
+ - bin/setup
45
+ - lib/shortify.rb
46
+ - lib/shortify/client.rb
47
+ - lib/shortify/version.rb
48
+ - shortify.gemspec
49
+ homepage: https://github.com/shortify/shortify-ruby
50
+ licenses:
51
+ - MIT
52
+ metadata: {}
53
+ post_install_message:
54
+ rdoc_options: []
55
+ require_paths:
56
+ - lib
57
+ required_ruby_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ required_rubygems_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ requirements: []
68
+ rubyforge_project:
69
+ rubygems_version: 2.4.5
70
+ signing_key:
71
+ specification_version: 4
72
+ summary: A ruby client library for working with Shortify
73
+ test_files: []