reel-sessions 0.0.0.0

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: 814dcf1051255d7e2d737e8658ad29fdda0b9b3b
4
+ data.tar.gz: 9ee3474940d6793e701def4bcc8ee437a04c419c
5
+ SHA512:
6
+ metadata.gz: 1818083920b3c21593fad67c963b59c8c044d4dd40a42940091658d3651db02d4d3cb4805c913221baca033befb22f2a896aef3772257f1140eebf1ffdc954c9
7
+ data.tar.gz: c863fc8b06d7ccaa4eb9b0fb9c3eeed003fd8e7d823f39b04a1f3dc52ffc31770c0826cc4a09d4854e1f8b6ecb5d9bd031b45ad9fd334a65b53ee425828b818c
@@ -0,0 +1,10 @@
1
+ coverage/
2
+ rdoc/
3
+ doc/
4
+ pkg/
5
+ tmp/
6
+ .yardoc
7
+ .bundle
8
+ Gemfile.lock
9
+ log
10
+ .DS_Store
data/.rspec ADDED
@@ -0,0 +1,5 @@
1
+ --color
2
+ --format documentation
3
+ --order random
4
+ --warnings
5
+ --require spec_helper
@@ -0,0 +1,21 @@
1
+ script: rake ci
2
+ language: ruby
3
+ rvm:
4
+ - 2.2.0
5
+ - jruby
6
+ - ruby-head
7
+ - jruby-head
8
+ - rbx-2
9
+
10
+ matrix:
11
+ fast_finish: true
12
+ allow_failures:
13
+ - rvm: rbx-2
14
+ - rvm: ruby-head
15
+ - rvm: jruby-head
16
+
17
+ notifications:
18
+ irc: "irc.freenode.org#celluloid"
19
+
20
+ sudo: false
21
+ install: bundle install --without=development
File without changes
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ group :development, :test do
4
+ gem "rubocop"
5
+ gem "rspec"
6
+ gem "rake"
7
+ end
8
+
9
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Celluloid Framework Corporation
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 all
13
+ 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 THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ # Work In Progress
@@ -0,0 +1,8 @@
1
+ require "bundler/gem_tasks"
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec) do |spec|
5
+ spec.pattern = 'spec/**/*_spec.rb'
6
+ spec.rspec_opts = ['--color --format documentation']
7
+ end
8
+ task :default => :spec
File without changes
File without changes
@@ -0,0 +1,17 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |gem|
4
+ gem.name = 'reel-sessions'
5
+ gem.version = '0.0.0.0'
6
+ gem.platform = Gem::Platform::RUBY
7
+ gem.summary = "Concurrent session support for Reel."
8
+ gem.description = 'Persistent & semi-persistent server-side data storage for web browsing.'
9
+ gem.licenses = ['MIT']
10
+
11
+ gem.authors = ["Donovan Keme", "Kenichi Nakamura", "Pulkit Bhatia"]
12
+ gem.email = ['code@extremist.digital', 'kenichi.nakamura@gmail.com', 'pulkitbhatiais13@gmail.com']
13
+ gem.homepage = 'https://github.com/celluloid/reel-sessions'
14
+
15
+ gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|examples|spec|features)/}) }
16
+ gem.require_path = 'lib'
17
+ end
@@ -0,0 +1,7 @@
1
+ require 'rspec/core/rake_task'
2
+
3
+ RSpec::Core::RakeTask.new
4
+
5
+ RSpec::Core::RakeTask.new(:rcov) do |task|
6
+ task.rcov = true
7
+ end
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: reel-sessions
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Donovan Keme
8
+ - Kenichi Nakamura
9
+ - Pulkit Bhatia
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2016-05-26 00:00:00.000000000 Z
14
+ dependencies: []
15
+ description: Persistent & semi-persistent server-side data storage for web browsing.
16
+ email:
17
+ - code@extremist.digital
18
+ - kenichi.nakamura@gmail.com
19
+ - pulkitbhatiais13@gmail.com
20
+ executables: []
21
+ extensions: []
22
+ extra_rdoc_files: []
23
+ files:
24
+ - ".gitignore"
25
+ - ".rspec"
26
+ - ".travis.yml"
27
+ - CHANGES.md
28
+ - Gemfile
29
+ - LICENSE
30
+ - README.md
31
+ - Rakefile
32
+ - lib/reel/sessions.rb
33
+ - lib/reel/sessions/.keep
34
+ - reel-sessions.gemspec
35
+ - tasks/rspec.rake
36
+ homepage: https://github.com/celluloid/reel-sessions
37
+ licenses:
38
+ - MIT
39
+ metadata: {}
40
+ post_install_message:
41
+ rdoc_options: []
42
+ require_paths:
43
+ - lib
44
+ required_ruby_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ required_rubygems_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ requirements: []
55
+ rubyforge_project:
56
+ rubygems_version: 2.6.2
57
+ signing_key:
58
+ specification_version: 4
59
+ summary: Concurrent session support for Reel.
60
+ test_files: []