ether 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MDFmZTE0YjUyMjU3YTQ2NTQwYzM5YTdkZDcyZTJlNGI3MDk3Mjk0Yg==
5
+ data.tar.gz: !binary |-
6
+ NDY4YWQxZTliNmQzMmE3NDVkZTFkNjU5MzYxYTU1MDE3NmI1Zjg5Nw==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ODU2OTk2ZmUzMWY3ZTc4YTU4NDczMzIwZDE4ODk2YTZiMzQ5ZjFmZTVjMmFm
10
+ NDk3MGZkNWNjZjRlNGM5MmJlMDdmMmRlY2EyYmRmZWMxMzIwOWE0NzgzNWVk
11
+ ODYxZWFhZTBkOTg1NTNmNWM4MTRlZDA0MzhiOTVlNmYwNmEwODE=
12
+ data.tar.gz: !binary |-
13
+ OTc2ODNlZDFhYzA1ODc1YjdhNjRmZDhlMGU1MWU1OWMwMWY4MjA0N2VjYjI2
14
+ YjU5M2JkZTNjMDM0MDk2MzZiYmY1MWRmZTNjMmI1NWFiYWJiZTUyNzRiN2Y5
15
+ ZTlhZWE4ODUwNDNmOTQxYzViN2U4MjliZWRjMjk2NDZjYjU4M2M=
@@ -0,0 +1,8 @@
1
+ *.gem
2
+ .bundle
3
+ .config
4
+ Gemfile.lock
5
+ coverage
6
+ pkg
7
+ rdoc
8
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
3
+
4
+ gem 'rake'
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Mark Gangl
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.
@@ -0,0 +1,35 @@
1
+ # Ether
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/ether.png)](http://badge.fury.io/rb/ether)
4
+
5
+ Early stages of a lightweight API consuming framework.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'ether'
13
+ ```
14
+
15
+ Or install it yourself as:
16
+
17
+ ```shell
18
+ $ gem install ether
19
+ ```
20
+
21
+ ## Contributing
22
+
23
+ 1. Fork it
24
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
25
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
26
+ 4. Push to the branch (`git push origin my-new-feature`)
27
+ 5. Create new Pull Request
28
+
29
+ ## Links
30
+
31
+ * repo: http://github.com/attack/ether
32
+
33
+ ## Copyright
34
+
35
+ Copyright (c) 2014 Mark Gangl. See LICENSE for details.
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -0,0 +1,23 @@
1
+ # encoding: utf-8
2
+ $:.push File.expand_path('../lib', __FILE__)
3
+ require 'ether/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'ether'
7
+ spec.version = Ether::VERSION
8
+ spec.authors = ['Mark Gangl']
9
+ spec.email = ['mark@attackcorp.com']
10
+ spec.description = 'A simple API consuming framework'
11
+ spec.summary = spec.description
12
+ spec.homepage = 'http://github.com/attack/ether'
13
+ spec.license = 'MIT'
14
+
15
+ spec.platform = Gem::Platform::RUBY
16
+ spec.required_ruby_version = '>= 1.9.2'
17
+
18
+ spec.files = `git ls-files -z`.split("\x0")
19
+ spec.test_files = spec.files.grep(%r{^spec/})
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.add_development_dependency 'bundler', '~> 1.3'
23
+ end
@@ -0,0 +1,4 @@
1
+ require 'ether/version'
2
+
3
+ module Ether
4
+ end
@@ -0,0 +1,3 @@
1
+ module Ether
2
+ VERSION = '0.0.1'
3
+ end
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ether
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Mark Gangl
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-01-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ description: A simple API consuming framework
28
+ email:
29
+ - mark@attackcorp.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - .gitignore
35
+ - Gemfile
36
+ - LICENSE.txt
37
+ - README.md
38
+ - Rakefile
39
+ - ether.gemspec
40
+ - lib/ether.rb
41
+ - lib/ether/version.rb
42
+ homepage: http://github.com/attack/ether
43
+ licenses:
44
+ - MIT
45
+ metadata: {}
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: 1.9.2
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ! '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubyforge_project:
62
+ rubygems_version: 2.2.0
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: A simple API consuming framework
66
+ test_files: []