rubel 0.0.1 → 0.0.2

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.
Files changed (6) hide show
  1. data/Gemfile +4 -0
  2. data/LICENSE +22 -0
  3. data/Rakefile +2 -0
  4. data/lib/rubel/version.rb +3 -0
  5. data/rubel.gemspec +17 -0
  6. metadata +8 -2
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rubel.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 TODO: Write your name
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/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,3 @@
1
+ module Rubel
2
+ VERSION = "0.0.2"
3
+ end
data/rubel.gemspec ADDED
@@ -0,0 +1,17 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/rubel/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["hasclass"]
6
+ gem.email = ["sebi.burkhard@gmail.com"]
7
+ gem.description = %q{ruby enterprise language. Run excel-like formulas ruby code. E.g. SUM(MAP(KEY_ACCOUNTS(), revenue))}
8
+ gem.summary = %q{A dsl for excel-like formulas to run as regular rubycode. E.g. SUM(MAP(KEY_ACCOUNTS(), revenue))}
9
+ gem.homepage = "http://hasclass.com/rubel"
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "rubel"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = Rubel::VERSION
17
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,7 +11,8 @@ bindir: bin
11
11
  cert_chain: []
12
12
  date: 2012-04-28 00:00:00.000000000 Z
13
13
  dependencies: []
14
- description: ruby enterprise language
14
+ description: ruby enterprise language. Run excel-like formulas ruby code. E.g. SUM(MAP(KEY_ACCOUNTS(),
15
+ revenue))
15
16
  email:
16
17
  - sebi.burkhard@gmail.com
17
18
  executables: []
@@ -20,7 +21,10 @@ extra_rdoc_files: []
20
21
  files:
21
22
  - .gitignore
22
23
  - .rspec
24
+ - Gemfile
25
+ - LICENSE
23
26
  - README.md
27
+ - Rakefile
24
28
  - lib/rubel.rb
25
29
  - lib/rubel/base.rb
26
30
  - lib/rubel/core.rb
@@ -29,6 +33,8 @@ files:
29
33
  - lib/rubel/runtime/console.rb
30
34
  - lib/rubel/runtime/loader.rb
31
35
  - lib/rubel/runtime/sandbox.rb
36
+ - lib/rubel/version.rb
37
+ - rubel.gemspec
32
38
  - spec/integration/rubel_spec.rb
33
39
  - spec/spec_helper.rb
34
40
  homepage: http://hasclass.com/rubel