finishio 0.0.2 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3b194b02fef6def4c66e69e0f3fbd7574afd3260
4
- data.tar.gz: 625d945b79d93fc43f2ae0a0e2e9a1df1cd30cec
3
+ metadata.gz: 0900fa119440c28b81b5ceb3e3b07882e49c2cff
4
+ data.tar.gz: bcd2aca57879cac5afd22d684015d6afb5186c75
5
5
  SHA512:
6
- metadata.gz: c4b143e902788a47823b74653c315c50e868ad3fcf7fd9c8e466bfabe88e185881190fdcae8e20c9946e0ea92d5a47ebcab6b2e4d9d5be8df368049edb15c9d3
7
- data.tar.gz: 9622983d37d96f8341f54a88c4331d00fe852473c2c1a107da20cd95e544a7d4bde11f74fe14901b3568651d11ce6b4944e1aeaac69ea9c61e56773348d51312
6
+ metadata.gz: 3a38f2185160f39c56d024a959e991b2544f123a582367585b9b60f0753b0c2cf39c1764577026119bcaf99d458613ecdff27066a03e14f65b853de3b50ff69b
7
+ data.tar.gz: 87cbf00d8c9e02780eafaa7ed4831fef1630dd5cd232c76a56b200343eea6aa0bf4dc1d63db95aed0bc0b8f1298504d81e639ca9432ac6861d6b693e90abb4d3
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in finishio.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Aly Badawy
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Finishio
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'finishio'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install finishio
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/finishio CHANGED
@@ -1,30 +1,31 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
+ require 'finishio'
4
+
3
5
 
4
6
  def help
5
7
  %Q(
6
- Usage: finishio [COMMAND] [OPTIONS]
7
-
8
- Commands:
9
- help Prints this help document
10
- version Prints the siteleaf gem version
11
-
12
- Options:
13
- -h, --help Prints this help document
14
- -v, --version Prints the siteleaf gem version
15
- -p, --port PORT Binds local server to PORT (default: 9292)
16
- )
17
- end
8
+ Usage: finishio [COMMAND] [OPTIONS]
18
9
 
10
+ Commands:
11
+ help Prints this help document
12
+ version Prints the finishio gem version
19
13
 
14
+ Options:
15
+ -h, --help Prints this help document
16
+ -v, --version Prints the finishio gem version
17
+ -p, --port PORT Binds local server to PORT (default: 9292)
20
18
 
19
+ See https://github.com/finishio/finishio-gem for additional documentation.
20
+ )
21
+ end
21
22
 
22
23
  case ARGV[0]
23
- when '-v', '--version', 'version'
24
- puts Finishio::VERSION
25
- when '-h', '--help', 'help'
26
- puts help
27
- else
28
- puts "`#{ARGV[0]}` command not found.\n"
29
- puts help
24
+ when '-v', '--version', 'version'
25
+ puts Finishio::VERSION
26
+ when '-h', '--help', 'help'
27
+ puts help
28
+ else
29
+ puts "`#{ARGV[0]}` command not found.\n"
30
+ puts help
30
31
  end
data/finishio.gemspec ADDED
@@ -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 'finishio/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "finishio"
8
+ spec.version = Finishio::VERSION
9
+ spec.authors = ["Aly Badawy"]
10
+ spec.email = ["me@alybadawy.com"]
11
+ spec.description = %q{A Ruby interface for Finish.io APIs}
12
+ spec.summary = %q{A Ruby interface for Finish.io APIs}
13
+ spec.homepage = "http://finishi.io"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ end
data/lib/finishio.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "finishio/version"
2
+
3
+ module Finishio
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Finishio
2
+ VERSION = "0.0.5"
3
+ end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: finishio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
- - Finish
7
+ - Aly Badawy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
@@ -38,16 +38,24 @@ dependencies:
38
38
  - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: a Ruby interface for Finish.io
41
+ description: A Ruby interface for Finish.io APIs
42
42
  email:
43
- - info@finish.io
43
+ - me@alybadawy.com
44
44
  executables:
45
45
  - finishio
46
46
  extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
+ - .gitignore
50
+ - Gemfile
51
+ - LICENSE.txt
52
+ - README.md
53
+ - Rakefile
49
54
  - bin/finishio
50
- homepage: http://finish.io
55
+ - finishio.gemspec
56
+ - lib/finishio.rb
57
+ - lib/finishio/version.rb
58
+ homepage: http://finishi.io
51
59
  licenses:
52
60
  - MIT
53
61
  metadata: {}
@@ -70,5 +78,5 @@ rubyforge_project:
70
78
  rubygems_version: 2.0.5
71
79
  signing_key:
72
80
  specification_version: 4
73
- summary: a Ruby interface for Finish.io
81
+ summary: A Ruby interface for Finish.io APIs
74
82
  test_files: []