rubotron 0.1.1

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: 4fac32cb455d054d004ed903cc40941bce01649d
4
+ data.tar.gz: 071af0223e8e83c2202957e2dd5ff80c9fc6fcde
5
+ SHA512:
6
+ metadata.gz: b19d2262a07fd17e5390deb1f6da220dbf843a6db95bccded0e7a595224fbe52a6c58bbda7508dce1e33a2601a33c1d28f1878a8a77c94e3287954c45932f460
7
+ data.tar.gz: 60b4f1a07a3fa332a18ef8da760a03373fef4891c502e223de6bf0739e0dedf54c5c348d5eb64bf31020bad71e38d608d72d42a93ba4fcc4772dc178335747b1
@@ -0,0 +1,20 @@
1
+ Copyright 2015 Emilio Forrer
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,41 @@
1
+ **Rubotron**
2
+ ===================
3
+
4
+ Core gem of the rubotron framework.
5
+
6
+ ----------
7
+
8
+ **Installation**
9
+ ------------
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```
14
+ gem 'rubotron'
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ ```
20
+ bundle install
21
+ ```
22
+
23
+ Or install it yourself as:
24
+
25
+ ```
26
+ $ gem install rubotron
27
+ ```
28
+
29
+ ----------
30
+
31
+
32
+ ## **Rubotron framework is under development**
33
+
34
+ This gem it's just a placeholder until the framework is released
35
+
36
+ ----------
37
+
38
+
39
+ ## **Copyright**
40
+
41
+ Copyright (c) 2015 Emilio Forrer. See LICENSE.txt for further details.
@@ -0,0 +1,4 @@
1
+ require "rubotron/version"
2
+
3
+ module Rubotron
4
+ end
@@ -0,0 +1,10 @@
1
+ module Rubotron
2
+ class Version < String
3
+ [:major, :minor, :patch].each_with_index do |version, index|
4
+ define_method "#{version}" do
5
+ self.to_s.split(".")[index]
6
+ end
7
+ end
8
+ end
9
+ VERSION = Rubotron::Version.new("0.1.1")
10
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :rubotron do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubotron
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Emilio Forrer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-07 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Core gem of the Rubotron development framework.
14
+ email:
15
+ - dev.emilio.forrer@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE.txt
21
+ - README.md
22
+ - lib/rubotron.rb
23
+ - lib/rubotron/version.rb
24
+ - lib/tasks/rubotron_tasks.rake
25
+ homepage: https://github.com/emilioforrer/rubotron.git
26
+ licenses:
27
+ - MIT
28
+ metadata: {}
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubyforge_project:
45
+ rubygems_version: 2.4.5
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: Core of Rubotron.
49
+ test_files: []