log_js 0.5

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1a05a45e6b3127281e3ca084492df7eb95e5d99c
4
+ data.tar.gz: cbfed54dd050a27f92ef09c486bfa8fc1de03c0a
5
+ SHA512:
6
+ metadata.gz: 8cb118dcd5141353584ffe8c2ef3b9f94d0bcf6445aea78543021f48ef7da4a1a0ca6e6596527f0a850f0012dbfeae8d5bf29ffa9a7e716ad1dbb61be1fb2819
7
+ data.tar.gz: a0e730433a9b167d0927e49a3a9fd930a411c12697ea51bfd422c89acc4e4d30b97e41ebd091e88f26cf254199520de530ae9b810aee3eb5ef9109b0be6cd372
data/.gitignore ADDED
@@ -0,0 +1,15 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ *.gem
15
+ mkmf.log
data/.keep ADDED
File without changes
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in log_js.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Ilya N. Zykin
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/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # LogJS
2
+
3
+ Take care of your joints. Replace `console.log` with `log` in your Rails App
4
+
5
+ ## Installation
6
+
7
+ **Gemfile**
8
+
9
+ ```ruby
10
+ gem 'log_js'
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ **application.js**
16
+
17
+ ```coffeescript
18
+ //= require jquery
19
+ //= require log_js
20
+ ```
21
+
22
+ Nobody wants to see `log` messages in a web console in the production mode.
23
+ You can configure a visibility of `log` messages with `data-log-js` param.
24
+
25
+ **layouts/application.html.slim**
26
+
27
+ ```slim
28
+ head(data-log-js=Rails.env.development?)
29
+ ```
30
+
31
+ **Into your Browser Console**
32
+
33
+ ```javascript
34
+ log('Hello World!')
35
+ ```
36
+
37
+ ```javascript
38
+ LogJS.enable = true // log messages will be visible
39
+ LogJS.enable = false // log messages will be disabled
40
+ ```
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,10 @@
1
+ @LogJS = do ->
2
+ init: ->
3
+ @enable ||= $('[data-log-js]').length
4
+
5
+ @log = ->
6
+ try
7
+ if LogJS.enable
8
+ console.log arguments...
9
+
10
+ $ -> do LogJS.init
data/gem_version.rb ADDED
@@ -0,0 +1,4 @@
1
+ module LogJS
2
+ VERSION = "0.0.2"
3
+ end
4
+
data/lib/log_js.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "log_js/version"
2
+
3
+ module LogJS
4
+ class Engine < Rails::Engine; end
5
+ end
data/the_log.gemspec ADDED
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ module LogJS
6
+ VERSION = "0.5"
7
+ end
8
+
9
+ Gem::Specification.new do |spec|
10
+ spec.name = "log_js"
11
+ spec.version = LogJS::VERSION
12
+ spec.authors = ["Ilya N. Zykin"]
13
+ spec.email = ["zykin-ilya@ya.ru"]
14
+ spec.summary = %q{log() method for JavaScript}
15
+ spec.description = %q{Replace `console.log` with `log` in your Rails App}
16
+ spec.homepage = "https://github.com/TheOpenCMS"
17
+ spec.license = "MIT"
18
+
19
+ spec.files = `git ls-files -z`.split("\x0")
20
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
21
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_dependency "coffee-rails"
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.7"
27
+ spec.add_development_dependency "rake", "~> 10.0"
28
+ end
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: log_js
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.5'
5
+ platform: ruby
6
+ authors:
7
+ - Ilya N. Zykin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-03-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: coffee-rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.7'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description: Replace `console.log` with `log` in your Rails App
56
+ email:
57
+ - zykin-ilya@ya.ru
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".keep"
64
+ - Gemfile
65
+ - LICENSE.txt
66
+ - README.md
67
+ - Rakefile
68
+ - app/assets/javascripts/log_js.js.coffee
69
+ - gem_version.rb
70
+ - lib/log_js.rb
71
+ - the_log.gemspec
72
+ homepage: https://github.com/TheOpenCMS
73
+ licenses:
74
+ - MIT
75
+ metadata: {}
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubyforge_project:
92
+ rubygems_version: 2.5.2
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: log() method for JavaScript
96
+ test_files: []