social_stream-presence 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,8 @@
1
- require "social_stream-presence/version"
1
+ require 'social_stream-base'
2
2
 
3
3
  module Socialstream
4
4
  module Presence
5
- # Your code goes here...
6
5
  end
7
6
  end
7
+
8
+ require 'social_stream/presence/engine'
@@ -1,6 +1,6 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  $:.push File.expand_path("../lib", __FILE__)
3
- require "social_stream-presence/version"
3
+ require "social_stream/presence/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "social_stream-presence"
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: social_stream-presence
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
5
+ version: 0.0.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Aldo Gordillo
@@ -61,11 +61,9 @@ files:
61
61
  - Gemfile
62
62
  - Rakefile
63
63
  - lib/social_stream-presence.rb
64
- - lib/social_stream-presence/version.rb
65
64
  - social_stream-presence.gemspec
66
65
  - spec/demo/.gitignore
67
66
  - spec/demo/.rspec
68
- - spec/demo/Gemfile
69
67
  - spec/demo/README
70
68
  - spec/demo/Rakefile
71
69
  - spec/demo/app/assets/images/rails.png
@@ -1,5 +0,0 @@
1
- module Socialstream
2
- module Presence
3
- VERSION = "0.0.1"
4
- end
5
- end
data/spec/demo/Gemfile DELETED
@@ -1,33 +0,0 @@
1
- source 'http://rubygems.org'
2
-
3
- gem 'rails', '3.1.0.rc4'
4
-
5
- # Bundle edge Rails instead:
6
- # gem 'rails', :git => 'git://github.com/rails/rails.git'
7
-
8
- gem 'sqlite3'
9
-
10
- # Asset template engines
11
- gem 'sass-rails', "~> 3.1.0.rc"
12
- gem 'coffee-script'
13
- gem 'uglifier'
14
-
15
- gem 'jquery-rails'
16
-
17
- # Use unicorn as the web server
18
- # gem 'unicorn'
19
-
20
- # Deploy with Capistrano
21
- # gem 'capistrano'
22
-
23
- # To use debugger
24
- # gem 'ruby-debug19', :require => 'ruby-debug'
25
-
26
- group :test do
27
- # Pretty printed test output
28
- gem 'turn', :require => false
29
- end
30
-
31
- group :development , :test do
32
- gem 'rspec-rails', '2.1.0'
33
- end