at-let 0.0.1
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.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.md +31 -0
- data/README.md +32 -0
- data/Rakefile +1 -0
- data/at-let.gemspec +19 -0
- data/lib/let.rb +7 -0
- data/lib/let/version.rb +3 -0
- metadata +54 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
The Azure License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2012 Kenneth Ballenegger
|
|
4
|
+
|
|
5
|
+
Attribute to Kenneth Ballenegger - kswizz.com
|
|
6
|
+
|
|
7
|
+
You (the licensee) are hereby granted permission, free of charge,
|
|
8
|
+
to deal in this software or source code (this "Software") without
|
|
9
|
+
restriction, including without limitation the rights to use, copy,
|
|
10
|
+
modify, merge, publish, distribute, and/or sublicense this
|
|
11
|
+
Software, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
You must give attribution to the party mentioned above, by name and
|
|
14
|
+
by hyperlink, in the about box, credits document and/or
|
|
15
|
+
documentation of any derivative work using a substantial portion of
|
|
16
|
+
this Software.
|
|
17
|
+
|
|
18
|
+
You may not use the name of the copyright holder(s) to endorse or
|
|
19
|
+
promote products derived from this Software without specific prior
|
|
20
|
+
written permission.
|
|
21
|
+
|
|
22
|
+
THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
23
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
24
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
25
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
26
|
+
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
27
|
+
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
28
|
+
CONNECTION WITH THIS SOFTWARE OR THE USE OR OTHER DEALINGS IN THIS
|
|
29
|
+
SOFTWARE.
|
|
30
|
+
|
|
31
|
+
http://license.azuretalon.com/
|
data/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# ATLet
|
|
2
|
+
|
|
3
|
+
A simple ruby version of the let statement, from lispy languages.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add this line to your application's Gemfile:
|
|
8
|
+
|
|
9
|
+
gem 'at-let'
|
|
10
|
+
|
|
11
|
+
And then execute:
|
|
12
|
+
|
|
13
|
+
$ bundle
|
|
14
|
+
|
|
15
|
+
Or install it yourself as:
|
|
16
|
+
|
|
17
|
+
$ gem install at-let
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```ruby
|
|
22
|
+
let {|hello = "world"| hello } # => "world"
|
|
23
|
+
three = let {|two = 2, one = 1| one + two } # => 3
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Contributing
|
|
27
|
+
|
|
28
|
+
1. Fork it
|
|
29
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
30
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
31
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
32
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "bundler/gem_tasks"
|
data/at-let.gemspec
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'let/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |gem|
|
|
7
|
+
gem.name = 'at-let'
|
|
8
|
+
gem.version = ATLet::VERSION
|
|
9
|
+
gem.authors = ['Kenneth Ballenegger']
|
|
10
|
+
gem.email = ['kenneth@ballenegger.com']
|
|
11
|
+
gem.description = "A ruby version of the functional let statment. (From LISP)"
|
|
12
|
+
gem.summary = "A ruby version of the functional let statment. (From LISP)"
|
|
13
|
+
gem.homepage = "http://kswizz.com"
|
|
14
|
+
|
|
15
|
+
gem.files = `git ls-files`.split($/)
|
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
|
+
gem.require_paths = ['lib']
|
|
19
|
+
end
|
data/lib/let.rb
ADDED
data/lib/let/version.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: at-let
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Kenneth Ballenegger
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2012-12-28 00:00:00.000000000 Z
|
|
13
|
+
dependencies: []
|
|
14
|
+
description: A ruby version of the functional let statment. (From LISP)
|
|
15
|
+
email:
|
|
16
|
+
- kenneth@ballenegger.com
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- .gitignore
|
|
22
|
+
- Gemfile
|
|
23
|
+
- LICENSE.md
|
|
24
|
+
- README.md
|
|
25
|
+
- Rakefile
|
|
26
|
+
- at-let.gemspec
|
|
27
|
+
- lib/let.rb
|
|
28
|
+
- lib/let/version.rb
|
|
29
|
+
homepage: http://kswizz.com
|
|
30
|
+
licenses: []
|
|
31
|
+
post_install_message:
|
|
32
|
+
rdoc_options: []
|
|
33
|
+
require_paths:
|
|
34
|
+
- lib
|
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
36
|
+
none: false
|
|
37
|
+
requirements:
|
|
38
|
+
- - ! '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
42
|
+
none: false
|
|
43
|
+
requirements:
|
|
44
|
+
- - ! '>='
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
47
|
+
requirements: []
|
|
48
|
+
rubyforge_project:
|
|
49
|
+
rubygems_version: 1.8.24
|
|
50
|
+
signing_key:
|
|
51
|
+
specification_version: 3
|
|
52
|
+
summary: A ruby version of the functional let statment. (From LISP)
|
|
53
|
+
test_files: []
|
|
54
|
+
has_rdoc:
|