fix-let 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data.tar.gz.sig ADDED
Binary file
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.ruby-version
3
+ /.yardoc
4
+ /Gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,27 @@
1
+ language: ruby
2
+ sudo: false
3
+ cache: bundler
4
+ script: 'bundle exec rake test:coverage --trace'
5
+ before_install:
6
+ - gem install bundler
7
+ rvm:
8
+ - 1.9.3
9
+ - 2.0
10
+ - 2.1
11
+ - 2.2
12
+ - ruby-head
13
+ - jruby
14
+ - jruby-head
15
+ - rbx-2
16
+ matrix:
17
+ allow_failures:
18
+ - rvm: rbx-2
19
+ - rvm: jruby-head
20
+ - rvm: ruby-head
21
+ notifications:
22
+ webhooks:
23
+ urls:
24
+ - https://webhooks.gitter.im/e/a44b19cc5cf6db25fa87
25
+ on_success: change
26
+ on_failure: always
27
+ on_start: never
data/.yardopts ADDED
@@ -0,0 +1 @@
1
+ - README.md
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Cyril Wack
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,117 @@
1
+ # Fix::Let
2
+
3
+ [![Build Status](https://travis-ci.org/fixrb/fix-let.svg?branch=master)][travis]
4
+ [![Gem Version](https://badge.fury.io/rb/fix-let.svg)][gem]
5
+ [![Inline docs](http://inch-ci.org/github/fixrb/fix-let.svg?branch=master)][inchpages]
6
+ [![Documentation](http://img.shields.io/:yard-docs-38c800.svg)][rubydoc]
7
+
8
+ > Provides `let` method for memoized helper definition.
9
+
10
+ ## Contact
11
+
12
+ * Home page: https://github.com/fixrb/fix-let
13
+ * Bugs/issues: https://github.com/fixrb/fix-let/issues
14
+ * Support: https://stackoverflow.com/questions/tagged/fixrb
15
+
16
+ ## Rubies
17
+
18
+ * [MRI](https://www.ruby-lang.org/)
19
+ * [Rubinius](http://rubini.us/)
20
+ * [JRuby](http://jruby.org/)
21
+
22
+ ## Installation
23
+
24
+ __Fix::Let__ is cryptographically signed.
25
+
26
+ To be sure the gem you install hasn't been tampered with, add my public key (if you haven't already) as a trusted certificate:
27
+
28
+ $ gem cert --add <(curl -Ls https://raw.github.com/fixrb/fix-let/master/certs/gem-fixrb-public_cert.pem)
29
+ $ gem install fix-let -P HighSecurity
30
+
31
+ The `HighSecurity` trust profile will verify all gems. All of __Fix::Let__'s dependencies are signed.
32
+
33
+ Or add this line to your application's Gemfile:
34
+
35
+ ```ruby
36
+ gem 'fix-let'
37
+ ```
38
+
39
+ And then execute:
40
+
41
+ $ bundle
42
+
43
+ ## Let's get started!
44
+
45
+ [![asciicast](https://asciinema.org/a/25973.png)](https://asciinema.org/a/25973)
46
+
47
+ ## Usage
48
+
49
+ Given this code:
50
+
51
+ ```ruby
52
+ # duck_spec.rb
53
+
54
+ require 'fix/let'
55
+
56
+ class Duck
57
+ def swims
58
+ 'So! Swoosh...'
59
+ end
60
+ end
61
+
62
+ Fix.describe Duck.new do
63
+ let(:famous_word) { 'So!' }
64
+
65
+ on :swims do
66
+ it { MUST eql "#{famous_word} Swoosh..." }
67
+ end
68
+ end
69
+ ```
70
+
71
+ The output should look like this:
72
+
73
+ $ ruby duck_spec.rb
74
+ .
75
+
76
+ Ran 1 tests in 0.000243 seconds
77
+ 100% compliant - 0 infos, 0 failures, 0 errors
78
+
79
+ ## Security
80
+
81
+ As a basic form of security __Fix::Let__ provides a set of SHA512 checksums for
82
+ every Gem release. These checksums can be found in the `checksum/` directory.
83
+ Although these checksums do not prevent malicious users from tampering with a
84
+ built Gem they can be used for basic integrity verification purposes.
85
+
86
+ The checksum of a file can be checked using the `sha512sum` command. For
87
+ example:
88
+
89
+ $ sha512sum pkg/fix-let-0.1.0.gem
90
+ 26198b7812a5ac118a5f2a1b63927871b3378efb071b37abb7e1ba87c1aac9f3a6b45eeae87d9dc647b194c15171b13f15e46503a9a1440b1233faf924381ff5 pkg/fix-let-0.1.0.gem
91
+
92
+ ## Versioning
93
+
94
+ __Fix::Let__ follows [Semantic Versioning 2.0](http://semver.org/).
95
+
96
+ ## Contributing
97
+
98
+ 1. [Fork it](https://github.com/fixrb/fix-let/fork)
99
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
100
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
101
+ 4. Push to the branch (`git push origin my-new-feature`)
102
+ 5. Create a new Pull Request
103
+
104
+ ## License
105
+
106
+ See `LICENSE.md` file.
107
+
108
+ [gem]: https://rubygems.org/gems/fix-let
109
+ [travis]: https://travis-ci.org/fixrb/fix-let
110
+ [inchpages]: http://inch-ci.org/github/fixrb/fix-let/
111
+ [rubydoc]: http://rubydoc.info/gems/fix-let/frames
112
+
113
+ ***
114
+
115
+ This project is sponsored by:
116
+
117
+ [![Sashite](http://www.sashite.com/assets/img/sashite.png)](http://www.sashite.com/)
data/Rakefile ADDED
@@ -0,0 +1,21 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rake/testtask'
3
+ require 'rubocop/rake_task'
4
+
5
+ RuboCop::RakeTask.new
6
+
7
+ Rake::TestTask.new do |t|
8
+ t.verbose = true
9
+ t.warning = true
10
+ t.pattern = File.join('test', '**', 'test_*.rb')
11
+ end
12
+
13
+ namespace :test do
14
+ task :coverage do
15
+ ENV['COVERAGE'] = 'true'
16
+ Rake::Task['test'].invoke
17
+ end
18
+ end
19
+
20
+ task(:doc_stats) { ruby '-S yard stats' }
21
+ task default: [:test, :doc_stats, :rubocop]
data/VERSION.semver ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
data/bin/console ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'fix/let'
5
+
6
+ require 'irb'
7
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,5 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
@@ -0,0 +1,21 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIDdDCCAlygAwIBAgIBATANBgkqhkiG9w0BAQUFADBAMRAwDgYDVQQDDAdjb250
3
+ YWN0MRUwEwYKCZImiZPyLGQBGRYFY3lyaWwxFTATBgoJkiaJk/IsZAEZFgVlbWFp
4
+ bDAeFw0xNTA3MzExMjExMDZaFw0xNjA3MzAxMjExMDZaMEAxEDAOBgNVBAMMB2Nv
5
+ bnRhY3QxFTATBgoJkiaJk/IsZAEZFgVjeXJpbDEVMBMGCgmSJomT8ixkARkWBWVt
6
+ YWlsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6hUEYoxnn1mtoaiK
7
+ NiwjzVPqPgQCR9ZeYdWjLJ3UUG2h5Q6awJCnbaGr8LGGcKtveCDbOJRjtdKNuOTH
8
+ O2FLTkf46nrMGiF+6/j//qh8o0EQHBRKIVMYkxZxZe4Fcqtdf1bWNMZuXeyoDjdt
9
+ 4yiGfizbbTOu0gBf7Yrsv5DsL0a5CU/We7zxMfgGXCVb9PYkD+OWUMcTARYDKfYa
10
+ nN9ECI7CFm/yXcsof/eIQA5EmJNmQnhx8B+8L6jDqQeSUAUrBZnC9CdloKOoqmEL
11
+ weqM2g6LM932Ba74rEl4QlFRYDcs8kjr71UcvseHRCUkFr36j26OU8+gKelsTNdO
12
+ 7OZNKQIDAQABo3kwdzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU
13
+ LSJTN9h29D6bqOhp+vyvhyM0AF4wHgYDVR0RBBcwFYETY29udGFjdEBjeXJpbC5l
14
+ bWFpbDAeBgNVHRIEFzAVgRNjb250YWN0QGN5cmlsLmVtYWlsMA0GCSqGSIb3DQEB
15
+ BQUAA4IBAQArqCC1rUyGJlF0DF9ZhUOgggyROvO0/WroSI5zWgzdB8EU7RJpsDIV
16
+ caGnpji7h0rQIGWQuJ6TL2fTFLfeGRFdIzRZwWC7TeXhcXngJHZxSjDBt2OpfM8A
17
+ P5eElSQS9iJCetBGGMyt354PfgZkg3URaC+JA6mdEisdtEdo64ElnMsLg9shCqye
18
+ JSR3BbejbyPVva0/MHKD+dR6RswlcM9KMiYOXQml7a/kH6huOHvVq9gj5xC2ih8W
19
+ dzJvWzQ1+dJU6WQv75E9ddSkaQrK3nhdgQVu+/wgvGSrsMvOGNz+LXaSDxQqZuwX
20
+ 0KNQFuIukfrdk8URwRnHoAnvx4U93iUw
21
+ -----END CERTIFICATE-----
data/fix-let.gemspec ADDED
@@ -0,0 +1,28 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = 'fix-let'
3
+ spec.version = File.read('VERSION.semver').chomp
4
+ spec.authors = ['Cyril Wack']
5
+ spec.email = ['contact@cyril.email']
6
+
7
+ spec.summary = 'Fix extension gem to define memoized helper methods.'
8
+ spec.description = 'Provides "let" method for memoized helper definition.'
9
+ spec.homepage = 'https://github.com/fixrb/fix-let'
10
+ spec.license = 'MIT'
11
+
12
+ spec.files =
13
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^test/}) }
14
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
15
+ spec.require_paths = ['lib']
16
+
17
+ spec.add_dependency 'fix', '~> 0.17.0'
18
+
19
+ spec.add_development_dependency 'bundler', '~> 1.10'
20
+ spec.add_development_dependency 'rake', '~> 10.4'
21
+ spec.add_development_dependency 'yard', '~> 0.8'
22
+ spec.add_development_dependency 'simplecov', '~> 0.10'
23
+ spec.add_development_dependency 'rubocop', '~> 0.35'
24
+
25
+ spec.cert_chain = ['certs/gem-fixrb-public_cert.pem']
26
+ private_key = File.expand_path('~/.ssh/gem-fixrb-private_key.pem')
27
+ spec.signing_key = private_key if File.exist?(private_key)
28
+ end
data/lib/fix/let.rb ADDED
@@ -0,0 +1,47 @@
1
+ require 'fix'
2
+
3
+ # Namespace for the Fix framework.
4
+ #
5
+ # @api public
6
+ #
7
+ module Fix
8
+ # Open the on class.
9
+ #
10
+ # @api private
11
+ #
12
+ class On
13
+ # @api public
14
+ #
15
+ # @example Let's define the answer to the Ultimate Question of Life, the
16
+ # Universe, and Everything.
17
+ #
18
+ # let(:answer) { 42 }
19
+ #
20
+ # @param method_name [Symbol] The identifier of a method.
21
+ # @param block [Proc] A spec to compare against the computed value.
22
+ #
23
+ # @return [#object_id] List of results.
24
+ def let(method_name, &block)
25
+ helpers.update(method_name => block)
26
+ end
27
+ end
28
+
29
+ # Open the it class.
30
+ #
31
+ # @api private
32
+ #
33
+ class It
34
+ private
35
+
36
+ # Override Ruby's method_missing in order to provide `On#let` interface.
37
+ #
38
+ # @api private
39
+ #
40
+ # @since 0.11.0
41
+ #
42
+ # @raise [NoMethodError] If doesn't respond to the given method.
43
+ def method_missing(name, *args, &block)
44
+ helpers.key?(name) ? helpers.fetch(name).call : super
45
+ end
46
+ end
47
+ end
data/pkg_checksum ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'digest/sha2'
4
+
5
+ gemname = 'fix-let'.to_sym
6
+ ARGV[0] = File.read('VERSION.semver').chomp if ARGV[0].nil?
7
+ built_gem_path = "pkg/#{gemname}-#{ARGV[0]}.gem"
8
+ checksum = Digest::SHA512.new.hexdigest(File.read(built_gem_path))
9
+ checksum_path = "checksum/#{gemname}-#{ARGV[0]}.gem.sha512"
10
+
11
+ File.open(checksum_path, 'w') { |f| f.write("#{checksum}\n") }
metadata ADDED
@@ -0,0 +1,193 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fix-let
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Cyril Wack
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain:
12
+ - !binary |-
13
+ LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURkRENDQWx5Z0F3SUJB
14
+ Z0lCQVRBTkJna3Foa2lHOXcwQkFRVUZBREJBTVJBd0RnWURWUVFEREFkamIy
15
+ NTAKWVdOME1SVXdFd1lLQ1pJbWlaUHlMR1FCR1JZRlkzbHlhV3d4RlRBVEJn
16
+ b0praWFKay9Jc1pBRVpGZ1ZsYldGcApiREFlRncweE5UQTNNekV4TWpFeE1E
17
+ WmFGdzB4TmpBM016QXhNakV4TURaYU1FQXhFREFPQmdOVkJBTU1CMk52CmJu
18
+ UmhZM1F4RlRBVEJnb0praWFKay9Jc1pBRVpGZ1ZqZVhKcGJERVZNQk1HQ2dt
19
+ U0pvbVQ4aXhrQVJrV0JXVnQKWVdsc01JSUJJakFOQmdrcWhraUc5dzBCQVFF
20
+ RkFBT0NBUThBTUlJQkNnS0NBUUVBNmhVRVlveG5uMW10b2FpSwpOaXdqelZQ
21
+ cVBnUUNSOVplWWRXakxKM1VVRzJoNVE2YXdKQ25iYUdyOExHR2NLdHZlQ0Ri
22
+ T0pSanRkS051T1RICk8yRkxUa2Y0Nm5yTUdpRis2L2ovL3FoOG8wRVFIQlJL
23
+ SVZNWWt4WnhaZTRGY3F0ZGYxYldOTVp1WGV5b0RqZHQKNHlpR2ZpemJiVE91
24
+ MGdCZjdZcnN2NURzTDBhNUNVL1dlN3p4TWZnR1hDVmI5UFlrRCtPV1VNY1RB
25
+ UllES2ZZYQpuTjlFQ0k3Q0ZtL3lYY3NvZi9lSVFBNUVtSk5tUW5oeDhCKzhM
26
+ NmpEcVFlU1VBVXJCWm5DOUNkbG9LT29xbUVMCndlcU0yZzZMTTkzMkJhNzRy
27
+ RWw0UWxGUllEY3M4a2pyNzFVY3ZzZUhSQ1VrRnIzNmoyNk9VOCtnS2Vsc1RO
28
+ ZE8KN09aTktRSURBUUFCbzNrd2R6QUpCZ05WSFJNRUFqQUFNQXNHQTFVZER3
29
+ UUVBd0lFc0RBZEJnTlZIUTRFRmdRVQpMU0pUTjloMjlENmJxT2hwK3Z5dmh5
30
+ TTBBRjR3SGdZRFZSMFJCQmN3RllFVFkyOXVkR0ZqZEVCamVYSnBiQzVsCmJX
31
+ RnBiREFlQmdOVkhSSUVGekFWZ1JOamIyNTBZV04wUUdONWNtbHNMbVZ0WVds
32
+ c01BMEdDU3FHU0liM0RRRUIKQlFVQUE0SUJBUUFycUNDMXJVeUdKbEYwREY5
33
+ WmhVT2dnZ3lST3ZPMC9Xcm9TSTV6V2d6ZEI4RVU3Ukpwc0RJVgpjYUducGpp
34
+ N2gwclFJR1dRdUo2VEwyZlRGTGZlR1JGZEl6Ulp3V0M3VGVYaGNYbmdKSFp4
35
+ U2pEQnQyT3BmTThBClA1ZUVsU1FTOWlKQ2V0QkdHTXl0MzU0UGZnWmtnM1VS
36
+ YUMrSkE2bWRFaXNkdEVkbzY0RWxuTXNMZzlzaENxeWUKSlNSM0JiZWpieVBW
37
+ dmEwL01IS0QrZFI2UnN3bGNNOUtNaVlPWFFtbDdhL2tINmh1T0h2VnE5Z2o1
38
+ eEMyaWg4Vwpkekp2V3pRMStkSlU2V1F2NzVFOWRkU2thUXJLM25oZGdRVnUr
39
+ L3dndkdTcnNNdk9HTnorTFhhU0R4UXFadXdYCjBLTlFGdUl1a2ZyZGs4VVJ3
40
+ Um5Ib0Fudng0VTkzaVV3Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K
41
+ date: 2015-11-27 00:00:00.000000000 Z
42
+ dependencies:
43
+ - !ruby/object:Gem::Dependency
44
+ name: fix
45
+ requirement: !ruby/object:Gem::Requirement
46
+ none: false
47
+ requirements:
48
+ - - ~>
49
+ - !ruby/object:Gem::Version
50
+ version: 0.17.0
51
+ type: :runtime
52
+ prerelease: false
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ~>
57
+ - !ruby/object:Gem::Version
58
+ version: 0.17.0
59
+ - !ruby/object:Gem::Dependency
60
+ name: bundler
61
+ requirement: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ~>
65
+ - !ruby/object:Gem::Version
66
+ version: '1.10'
67
+ type: :development
68
+ prerelease: false
69
+ version_requirements: !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ~>
73
+ - !ruby/object:Gem::Version
74
+ version: '1.10'
75
+ - !ruby/object:Gem::Dependency
76
+ name: rake
77
+ requirement: !ruby/object:Gem::Requirement
78
+ none: false
79
+ requirements:
80
+ - - ~>
81
+ - !ruby/object:Gem::Version
82
+ version: '10.4'
83
+ type: :development
84
+ prerelease: false
85
+ version_requirements: !ruby/object:Gem::Requirement
86
+ none: false
87
+ requirements:
88
+ - - ~>
89
+ - !ruby/object:Gem::Version
90
+ version: '10.4'
91
+ - !ruby/object:Gem::Dependency
92
+ name: yard
93
+ requirement: !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ~>
97
+ - !ruby/object:Gem::Version
98
+ version: '0.8'
99
+ type: :development
100
+ prerelease: false
101
+ version_requirements: !ruby/object:Gem::Requirement
102
+ none: false
103
+ requirements:
104
+ - - ~>
105
+ - !ruby/object:Gem::Version
106
+ version: '0.8'
107
+ - !ruby/object:Gem::Dependency
108
+ name: simplecov
109
+ requirement: !ruby/object:Gem::Requirement
110
+ none: false
111
+ requirements:
112
+ - - ~>
113
+ - !ruby/object:Gem::Version
114
+ version: '0.10'
115
+ type: :development
116
+ prerelease: false
117
+ version_requirements: !ruby/object:Gem::Requirement
118
+ none: false
119
+ requirements:
120
+ - - ~>
121
+ - !ruby/object:Gem::Version
122
+ version: '0.10'
123
+ - !ruby/object:Gem::Dependency
124
+ name: rubocop
125
+ requirement: !ruby/object:Gem::Requirement
126
+ none: false
127
+ requirements:
128
+ - - ~>
129
+ - !ruby/object:Gem::Version
130
+ version: '0.35'
131
+ type: :development
132
+ prerelease: false
133
+ version_requirements: !ruby/object:Gem::Requirement
134
+ none: false
135
+ requirements:
136
+ - - ~>
137
+ - !ruby/object:Gem::Version
138
+ version: '0.35'
139
+ description: Provides "let" method for memoized helper definition.
140
+ email:
141
+ - contact@cyril.email
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - .gitignore
147
+ - .travis.yml
148
+ - .yardopts
149
+ - CODE_OF_CONDUCT.md
150
+ - Gemfile
151
+ - LICENSE.md
152
+ - README.md
153
+ - Rakefile
154
+ - VERSION.semver
155
+ - bin/console
156
+ - bin/setup
157
+ - certs/gem-fixrb-public_cert.pem
158
+ - fix-let.gemspec
159
+ - lib/fix/let.rb
160
+ - pkg_checksum
161
+ homepage: https://github.com/fixrb/fix-let
162
+ licenses:
163
+ - MIT
164
+ post_install_message:
165
+ rdoc_options: []
166
+ require_paths:
167
+ - lib
168
+ required_ruby_version: !ruby/object:Gem::Requirement
169
+ none: false
170
+ requirements:
171
+ - - ! '>='
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ segments:
175
+ - 0
176
+ hash: -439132961520202825
177
+ required_rubygems_version: !ruby/object:Gem::Requirement
178
+ none: false
179
+ requirements:
180
+ - - ! '>='
181
+ - !ruby/object:Gem::Version
182
+ version: '0'
183
+ segments:
184
+ - 0
185
+ hash: -439132961520202825
186
+ requirements: []
187
+ rubyforge_project:
188
+ rubygems_version: 1.8.23.2
189
+ signing_key:
190
+ specification_version: 3
191
+ summary: Fix extension gem to define memoized helper methods.
192
+ test_files: []
193
+ has_rdoc:
metadata.gz.sig ADDED
@@ -0,0 +1,2 @@
1
+ +���?m����~A$�3��3t�w���@�x@̆��B�X�fXQL�F�jez��B�=�����7���Ř8͑e����=�z�D����k�����WE��%AN�do=έG
2
+ ��%яNgc�$�>� ^�0�Q�J`�)�g��]0��l�3���h6����jMl�{ ��z����ϼ��ܶt�Կo����.{/�f�z�ؖ��L�g����3*�[�