hey_listen 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 47715a75c382119773ce43ece358230fb96641cf
4
- data.tar.gz: eff35baddf811be3149e2b64c9b6e29eeacfb3a0
3
+ metadata.gz: 4a537e70d3718d989a20b2658a545f031a9b5a6f
4
+ data.tar.gz: 93f78de8e5f1e2628c8f005df98630916d07a607
5
5
  SHA512:
6
- metadata.gz: d09494a74984468f2c6f98d26baadc1e462f0d18a9ed9f756ba1bba18fd693b3633d86cd50531cee6a6dfb7f27c1f80f2d102d201cb9b509283397f24040e4a7
7
- data.tar.gz: 66da5b99d5cf7cb0a65bfdd49c186ac6ed389b9cc2be4f809e648629ba6eb2592cefb6254256c46f1c2f0c5f994e629eff6978a9a4cf55d57229eb68f9a59336
6
+ metadata.gz: 3c54b58059ddcc86f5e2ee17cd65ca00e9d69381ac314aeda78304bc48f920453c0197ffca23a6ff25ada7d6f7006736ae391965dd435eb47705d0d1003dc63f
7
+ data.tar.gz: f4190101fd9495aab6c292a8b0eea635e5f9c8a4be72898ba1db0808e9ccfdd589be9372506dee98cd0febe87f3e818dc336ea1d90844432b2f69a82b05cf625
@@ -1,6 +1,4 @@
1
- Copyright (c) 2014 Érik Escobedo
2
-
3
- MIT License
1
+ Copyright 2014 YOURNAME
4
2
 
5
3
  Permission is hereby granted, free of charge, to any person obtaining
6
4
  a copy of this software and associated documentation files (the
data/README.rdoc ADDED
@@ -0,0 +1,3 @@
1
+ = HeyListen
2
+
3
+ This project rocks and uses MIT-LICENSE.
data/Rakefile CHANGED
@@ -1,2 +1,23 @@
1
- require "bundler/gem_tasks"
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'HeyListen'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../spec/test_app/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+
21
+
22
+ Bundler::GemHelper.install_tasks
2
23
 
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,4 @@
1
+ module HeyListen
2
+ class ApplicationController < ActionController::Base
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module HeyListen
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,2 @@
1
+ class Notification < ActiveRecord::Base
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>HeyListen</title>
5
+ <%= stylesheet_link_tag "hey_listen/application", media: "all" %>
6
+ <%= javascript_include_tag "hey_listen/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
data/config/routes.rb ADDED
@@ -0,0 +1,2 @@
1
+ HeyListen::Engine.routes.draw do
2
+ end
@@ -0,0 +1,10 @@
1
+ module HeyListen
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace HeyListen
4
+
5
+ config.generators do |g|
6
+ g.test_framework :rspec
7
+ g.fixture_replacement :factory_girl, dir: 'spec/factories'
8
+ end
9
+ end
10
+ end
@@ -1,3 +1,3 @@
1
1
  module HeyListen
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/lib/hey_listen.rb CHANGED
@@ -1,5 +1,4 @@
1
- require "hey_listen/version"
1
+ require "hey_listen/engine"
2
2
 
3
3
  module HeyListen
4
- # Your code goes here...
5
4
  end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :hey_listen do
3
+ # # Task goes here
4
+ # end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hey_listen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik Escobedo
@@ -11,47 +11,33 @@ cert_chain: []
11
11
  date: 2014-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: bundler
14
+ name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ~>
18
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: '10.0'
34
- type: :development
19
+ version: 4.1.4
20
+ type: :runtime
35
21
  prerelease: false
36
22
  version_requirements: !ruby/object:Gem::Requirement
37
23
  requirements:
38
24
  - - ~>
39
25
  - !ruby/object:Gem::Version
40
- version: '10.0'
26
+ version: 4.1.4
41
27
  - !ruby/object:Gem::Dependency
42
- name: rspec
28
+ name: sqlite3
43
29
  requirement: !ruby/object:Gem::Requirement
44
30
  requirements:
45
- - - ~>
31
+ - - '>='
46
32
  - !ruby/object:Gem::Version
47
- version: '2.14'
33
+ version: '0'
48
34
  type: :development
49
35
  prerelease: false
50
36
  version_requirements: !ruby/object:Gem::Requirement
51
37
  requirements:
52
- - - ~>
38
+ - - '>='
53
39
  - !ruby/object:Gem::Version
54
- version: '2.14'
40
+ version: '0'
55
41
  description:
56
42
  email:
57
43
  - erik@codigojade.com
@@ -59,14 +45,20 @@ executables: []
59
45
  extensions: []
60
46
  extra_rdoc_files: []
61
47
  files:
62
- - .gitignore
63
- - Gemfile
64
- - LICENSE.txt
65
- - README.md
48
+ - MIT-LICENSE
49
+ - README.rdoc
66
50
  - Rakefile
67
- - hey_listen.gemspec
51
+ - app/assets/javascripts/hey_listen/application.js
52
+ - app/assets/stylesheets/hey_listen/application.css
53
+ - app/controllers/hey_listen/application_controller.rb
54
+ - app/helpers/hey_listen/application_helper.rb
55
+ - app/models/notification.rb
56
+ - app/views/layouts/hey_listen/application.html.erb
57
+ - config/routes.rb
68
58
  - lib/hey_listen.rb
59
+ - lib/hey_listen/engine.rb
69
60
  - lib/hey_listen/version.rb
61
+ - lib/tasks/hey_listen_tasks.rake
70
62
  homepage: http://github.com/codigojade/hey_listen
71
63
  licenses:
72
64
  - MIT
data/.gitignore DELETED
@@ -1,14 +0,0 @@
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
- mkmf.log
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in hey_listen.gemspec
4
- gemspec
data/README.md DELETED
@@ -1,31 +0,0 @@
1
- # HeyListen
2
-
3
- TODO: Write a gem description
4
-
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
-
9
- ```ruby
10
- gem 'hey_listen'
11
- ```
12
-
13
- And then execute:
14
-
15
- $ bundle
16
-
17
- Or install it yourself as:
18
-
19
- $ gem install hey_listen
20
-
21
- ## Usage
22
-
23
- TODO: Write usage instructions here
24
-
25
- ## Contributing
26
-
27
- 1. Fork it ( https://github.com/[my-github-username]/hey_listen/fork )
28
- 2. Create your feature branch (`git checkout -b my-new-feature`)
29
- 3. Commit your changes (`git commit -am 'Add some feature'`)
30
- 4. Push to the branch (`git push origin my-new-feature`)
31
- 5. Create a new Pull Request
data/hey_listen.gemspec DELETED
@@ -1,24 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'hey_listen/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "hey_listen"
8
- spec.version = HeyListen::VERSION
9
- spec.authors = ["Erik Escobedo"]
10
- spec.email = ["erik@codigojade.com"]
11
- spec.summary = %q{Allow Users to receive Real Time Notifications when something relevant happens.}
12
- spec.homepage = "http://github.com/codigojade/hey_listen"
13
- spec.license = "MIT"
14
-
15
- spec.files = `git ls-files -z`.split("\x0")
16
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
- spec.require_paths = ["lib"]
19
-
20
- spec.add_development_dependency "bundler", "~> 1.6"
21
- spec.add_development_dependency "rake", "~> 10.0"
22
-
23
- spec.add_development_dependency 'rspec', '~> 2.14'
24
- end