ember-debug-rails 0.3.1

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: 3ecffc018b82b29055eb73f6255f2f1206de18de
4
+ data.tar.gz: bbe0420328bd730bbb9378fd25987e5903313af8
5
+ SHA512:
6
+ metadata.gz: fe8cf4c57b9dd43396e3b88a5dac3d8528457a1b6b1c9a3bb70488f7e7a2def0f102647f75b9e2b49a84b8e19f2d98945dfe5bc70b5c8fcb2795b1e9aefd6544
7
+ data.tar.gz: c6241b4f1a5b3f08ceb62bed264974109113ddc251076a975c7d87cb6bd01b8e2ba806ff4ea08d17a98c77ce6ce7a087514f52469b277e3400f36d16f7100f38
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ember-debug-rails.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Ben Colon
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.
@@ -0,0 +1,35 @@
1
+ # Ember-debug-rails gem
2
+
3
+ Javascript [ember-debug](https://github.com/aexmachina/ember-debug) library in a Rails engine to use it with the Rails asset pipeline.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'ember-debug-rails'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install ember-debug-rails
18
+
19
+ ## Usage
20
+
21
+ Add this line to your JS manifest file:
22
+
23
+ //= require ember-debug-rails
24
+
25
+ ## Version
26
+
27
+ Synced with [ember-debug](https://github.com/aexmachina/ember-debug) library version
28
+
29
+ ## Contributing
30
+
31
+ 1. Fork it ( https://github.com/[my-github-username]/ember-debug-rails/fork )
32
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
33
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
34
+ 4. Push to the branch (`git push origin my-new-feature`)
35
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ember-debug-rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ember-debug-rails"
8
+ spec.version = EmberDebugRails::VERSION
9
+ spec.authors = ["Ben Colon"]
10
+ spec.email = ["ben@colon.com.fr"]
11
+ spec.summary = "ember-debug Javascript lib for Rails"
12
+ spec.description = "ember-debug Javascript lib packaged for the Rails asset pipeline"
13
+ spec.homepage = "https://github.com/bencolon/ember-debug-rails"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_dependency "railties", "> 3.1"
24
+ end
@@ -0,0 +1,6 @@
1
+ require "ember-debug-rails/version"
2
+
3
+ module EmberDebugRails
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
@@ -0,0 +1,3 @@
1
+ module EmberDebugRails
2
+ VERSION = "0.3.1"
3
+ end
@@ -0,0 +1,107 @@
1
+ /* global Ember */
2
+ Ember.Application.initializer({
3
+ name: 'debug',
4
+ after: typeof DS !== 'undefined' ? 'store' : null,
5
+ initialize: function(container, app) {
6
+ function alias(name) {
7
+ return function() {
8
+ debug[name].apply(null, arguments);
9
+ };
10
+ }
11
+ var debug = app.debug = {
12
+ container: container,
13
+ console: window.console,
14
+ consoleLog: window.console.log,
15
+ app: function(name) {
16
+ name = name || 'main';
17
+ return container.lookup('application:' + name);
18
+ },
19
+ route: function(name) {
20
+ name = name || debug.currentRouteName();
21
+ return container.lookup('route:' + name);
22
+ },
23
+ controller: function(name) {
24
+ name = name || debug.currentRouteName();
25
+ return container.lookup('controller:' + name);
26
+ },
27
+ model: function(name) {
28
+ var controller = debug.controller(name);
29
+ return controller && controller.get('model');
30
+ },
31
+ router: function(name) {
32
+ name = name || 'main';
33
+ return container.lookup('router:' + name).get('router');
34
+ },
35
+ routes: function() {
36
+ return Ember.keys(debug.router().recognizer.names);
37
+ },
38
+ view: function(id) {
39
+ if (typeof id === 'object') {
40
+ id = id.id;
41
+ }
42
+ return Ember.View.views[id];
43
+ },
44
+ currentRouteName: function() {
45
+ return debug.controller('application').get('currentRouteName');
46
+ },
47
+ currentPath: function() {
48
+ return debug.controller('application').get('currentPath');
49
+ },
50
+ log: function(promise, property, getEach) {
51
+ return promise.then(function(value) {
52
+ window.$E = value;
53
+ if (property) {
54
+ value = value[getEach ? 'getEach' : 'get'].call(value, property);
55
+ }
56
+ debug.consoleLog.call(debug.console, value);
57
+ });
58
+ },
59
+ className: function(object) {
60
+ return object.__proto__.constructor;
61
+ },
62
+ registry: container.registry.dict,
63
+ lookup: function(name) {
64
+ return container.lookup(name);
65
+ },
66
+ lookupFactory: function(name) {
67
+ return container.lookupFactory(name);
68
+ },
69
+ containerNameFor: function(object) {
70
+ var name;
71
+ container.cache.eachLocal(function(key, value) {
72
+ if (value === object) {
73
+ name = key;
74
+ }
75
+ });
76
+ return name;
77
+ },
78
+ templates: function() {
79
+ return Ember.keys(Ember.TEMPLATES);
80
+ },
81
+ inspect: Ember.inspect,
82
+ logResolver: function(bool) {
83
+ bool = typeof bool === 'undefined' ? true : bool;
84
+ Ember.ENV.LOG_MODULE_RESOLVER = bool;
85
+ },
86
+ logAll: function(bool) {
87
+ bool = typeof bool === 'undefined' ? true : bool;
88
+ app.LOG_ACTIVE_GENERATION = bool;
89
+ app.LOG_VIEW_LOOKUPS = bool;
90
+ app.LOG_TRANSITIONS = bool;
91
+ app.LOG_TRANSITIONS_INTERNAL = bool;
92
+ logResolver(bool);
93
+ },
94
+ globalize: function() {
95
+ for (var prop in this) {
96
+ if (this.hasOwnProperty(prop)) {
97
+ window[prop] = window[prop] || this[prop];
98
+ }
99
+ }
100
+ }
101
+ };
102
+ if (typeof DS !== 'undefined') {
103
+ debug.store = container.lookup('store:main');
104
+ debug.typeMaps = debug.store.typeMaps;
105
+ }
106
+ }
107
+ });
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ember-debug-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.1
5
+ platform: ruby
6
+ authors:
7
+ - Ben Colon
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-05-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: railties
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>'
46
+ - !ruby/object:Gem::Version
47
+ version: '3.1'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>'
53
+ - !ruby/object:Gem::Version
54
+ version: '3.1'
55
+ description: ember-debug Javascript lib packaged for the Rails asset pipeline
56
+ email:
57
+ - ben@colon.com.fr
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - .gitignore
63
+ - Gemfile
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
67
+ - ember-debug-rails.gemspec
68
+ - lib/ember-debug-rails.rb
69
+ - lib/ember-debug-rails/version.rb
70
+ - vendor/assets/javascripts/ember-debug.js
71
+ homepage: https://github.com/bencolon/ember-debug-rails
72
+ licenses:
73
+ - MIT
74
+ metadata: {}
75
+ post_install_message:
76
+ rdoc_options: []
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - '>='
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - '>='
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ requirements: []
90
+ rubyforge_project:
91
+ rubygems_version: 2.2.2
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: ember-debug Javascript lib for Rails
95
+ test_files: []