rfaye 0.5.3 → 0.5.4

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4678b806e28efd39788cd564cc12a9ea2846fdee
4
- data.tar.gz: 2080a5dba4240ff427f205aea59a5808380982c0
3
+ metadata.gz: 04111c28232a9ce507fc182eeecf1a9dac41ddb5
4
+ data.tar.gz: cd81bf3ac33d0459f4b1da584cedea979f148ab2
5
5
  SHA512:
6
- metadata.gz: ec9acd0abe8189f1de51e46d257965ce002c57e6505149604ae171b4f3c9ad82a9be09f23dec20f838323c0aec4d72ce4c9f66c4b96a4680e4fa07641517b38b
7
- data.tar.gz: 469ce1dcd7bdd37c5d305aa8e7fc18010210d3981a5cc4b479c80c402d67da2d937948df5c4d50993f50891d7d8fb4fa4b7a707f0c2c5b1bfe400ab3e329d06e
6
+ metadata.gz: ee7de6db281a4f9666f5ed519779bea63b389433553a4a31faf9ef5112bbb9c65b426a81af5c11122f9ee3b055f1d39803e217821d9fd3161d666ab95fce9496
7
+ data.tar.gz: 07dbb632e610aad73f2b2066004397f6c446a704e256b40f687de5b9e173888bbf3efc6065faa73c2d4fc7df9b8fde84850e04c2c73f6a2813c3d5a50fe46a35
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "rfaye"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
data/lib/rfaye/conf.rb CHANGED
@@ -4,7 +4,7 @@ module Rfaye
4
4
  class Conf
5
5
 
6
6
  @@config = {}
7
- @@version = "0.5.3"
7
+ @@version = "0.5.4"
8
8
  @@secure_prefix = "s"
9
9
 
10
10
  def self.load(filename, environment)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rfaye
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thiago Feitosa
@@ -76,12 +76,10 @@ executables: []
76
76
  extensions: []
77
77
  extra_rdoc_files: []
78
78
  files:
79
- - CHANGELOG
80
- - Gemfile
81
79
  - LICENSE
82
- - LICENSE.txt
83
80
  - README.md
84
- - Rakefile
81
+ - bin/console
82
+ - bin/setup
85
83
  - lib/generators/rfaye/install_generator.rb
86
84
  - lib/generators/rfaye/templates/rfaye.ru
87
85
  - lib/generators/rfaye/templates/rfaye.yml
@@ -91,7 +89,6 @@ files:
91
89
  - lib/rfaye/engine.rb
92
90
  - lib/rfaye/faye_extension.rb
93
91
  - lib/rfaye/view_helpers.rb
94
- - rfaye.gemspec
95
92
  homepage: http://rubygems.org/gems/rfaye
96
93
  licenses:
97
94
  - MIT
data/CHANGELOG DELETED
@@ -1,27 +0,0 @@
1
- # 0.5.4
2
- - faye extension update
3
- # 0.5.3
4
- - add security channel
5
- - add debug option on file config
6
- - update helper, update js
7
- # 0.5.2
8
- - add initialize file on generator
9
- - update rfaye.yml
10
- - run app using config on rfaye.yml
11
- - update faye extension
12
- - update rfaye js
13
- # 0.5.1
14
- - rfaye js update
15
- # 0.5
16
- - add generator
17
- - use faye js original
18
- # 0.4
19
- - add sub with overwrite
20
- - update helper
21
- # 0.3
22
- - add Rfaye on js
23
- - add faye extension
24
- # 0.2
25
- - fix require bug
26
- # 0.1
27
- - add file rfaye.js
data/Gemfile DELETED
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in treta.gemspec
4
- gemspec
5
- gem 'bcrypt', '~> 3.1.7'
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2015 Thiago Feitosa
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/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"
data/rfaye.gemspec DELETED
@@ -1,27 +0,0 @@
1
- lib = File.expand_path('../lib', __FILE__)
2
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
-
4
- # require 'rfaye'
5
- require 'rfaye/conf'
6
-
7
- Gem::Specification.new do |s|
8
- s.name = 'rfaye'
9
- s.version = Rfaye::Conf.version
10
- s.date = Time.now.strftime("%Y-%m-%d")
11
- s.summary = "Rails Faye"
12
- s.description = "Simple messaging "
13
- s.authors = ["Thiago Feitosa"]
14
- s.email = "mail@thiago.pro"
15
- # s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
- s.files = Dir["{app,lib,spec}/**/*", "[A-Z]*", "init.rb"] - ["Gemfile.lock"]
17
- s.require_path = "lib"
18
- s.homepage = "http://rubygems.org/gems/rfaye"
19
- s.license = 'MIT'
20
-
21
- s.require_paths = ["lib"]
22
-
23
- s.add_runtime_dependency 'faye', '~> 1.1', '>= 1.1.2'
24
- s.add_runtime_dependency 'thin', '~> 1.6', '>= 1.6.4'
25
- s.add_runtime_dependency 'bcrypt', '~> 3.1', '>= 3.1.7'
26
-
27
- end