airframe 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gititgnore +1 -0
- data/airframe.gemspec +21 -0
- data/lib/airframe/version.rb +3 -0
- metadata +48 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: dc8097b92a64eab0cdfdec2bffedf1e52faced0a
|
|
4
|
+
data.tar.gz: 74b25b7462183c7f86bf1cd113c0d09d0d9132d2
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 7dda6c1eca6c6ac6c8c03a3568193de6d343c0024c6cb758ab7180ba95922aa05505f14f16adb530e2937a44c0ecebfe2bc714227ae2a27ee5b8da8f08322714
|
|
7
|
+
data.tar.gz: edf0c3fc3f397d6e2975a295f3bb879855eef10980efb943c9aca7b22ce2553a3ddd339c48bb6f9be5fc022082804d5c67bb77dde971192ce256dd0ab3945739
|
data/.gititgnore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*.gem
|
data/airframe.gemspec
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
|
|
5
|
+
require 'airframe/version'
|
|
6
|
+
|
|
7
|
+
Gem::Specification.new do |spec|
|
|
8
|
+
spec.name = "airframe"
|
|
9
|
+
spec.version = Airframe::VERSION
|
|
10
|
+
spec.authors = ["Mark Maglana"]
|
|
11
|
+
spec.email = ["mmaglana@gmail.com"]
|
|
12
|
+
spec.description = %q{ A lightweight Ruby library for building REST clients }
|
|
13
|
+
spec.summary = %q{ A lightweight Ruby library for building REST clients }
|
|
14
|
+
spec.homepage = "http://aviator.github.io/www/"
|
|
15
|
+
spec.license = "MIT"
|
|
16
|
+
|
|
17
|
+
spec.files = `git ls-files`.split($/)
|
|
18
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
19
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
20
|
+
spec.require_paths = ["lib"]
|
|
21
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: airframe
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Mark Maglana
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-03-28 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: " A lightweight Ruby library for building REST clients "
|
|
14
|
+
email:
|
|
15
|
+
- mmaglana@gmail.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- ".gititgnore"
|
|
21
|
+
- airframe.gemspec
|
|
22
|
+
- lib/airframe/version.rb
|
|
23
|
+
homepage: http://aviator.github.io/www/
|
|
24
|
+
licenses:
|
|
25
|
+
- MIT
|
|
26
|
+
metadata: {}
|
|
27
|
+
post_install_message:
|
|
28
|
+
rdoc_options: []
|
|
29
|
+
require_paths:
|
|
30
|
+
- lib
|
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
|
+
requirements:
|
|
33
|
+
- - ">="
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: '0'
|
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
requirements: []
|
|
42
|
+
rubyforge_project:
|
|
43
|
+
rubygems_version: 2.4.8
|
|
44
|
+
signing_key:
|
|
45
|
+
specification_version: 4
|
|
46
|
+
summary: A lightweight Ruby library for building REST clients
|
|
47
|
+
test_files: []
|
|
48
|
+
has_rdoc:
|