social_stream 0.3.2 → 0.3.3
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.
- data/.rspec +1 -0
- data/Rakefile +1 -4
- data/app/views/layouts/_header.erb +1 -2
- data/lib/generators/social_stream/templates/public/images/header-logo.png +0 -0
- data/lib/social_stream/version.rb +1 -1
- data/social_stream.gemspec +3 -3
- data/spec/spec_helper.rb +1 -7
- metadata +17 -15
data/.rspec
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--color
|
data/Rakefile
CHANGED
|
@@ -4,7 +4,6 @@ require 'rake/rdoctask'
|
|
|
4
4
|
|
|
5
5
|
require 'rubygems'
|
|
6
6
|
|
|
7
|
-
require 'rspec/core'
|
|
8
7
|
require 'rspec/core/rake_task'
|
|
9
8
|
|
|
10
9
|
require 'bundler'
|
|
@@ -12,9 +11,7 @@ require 'bundler'
|
|
|
12
11
|
require File.join(File.dirname(__FILE__), 'lib', 'social_stream', 'version')
|
|
13
12
|
|
|
14
13
|
|
|
15
|
-
|
|
16
|
-
t.rspec_opts = ["--color"]
|
|
17
|
-
end
|
|
14
|
+
RSpec::Core::RakeTask.new(:spec)
|
|
18
15
|
|
|
19
16
|
task :default => :spec
|
|
20
17
|
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
<div id="headerFront">
|
|
2
2
|
<div class="banner_top">
|
|
3
3
|
<div id="header_left">
|
|
4
|
-
<a href="index.htm"></a>
|
|
5
4
|
<div id="logo_txt">
|
|
6
|
-
|
|
5
|
+
<%= link_to(image_tag('header-logo.png', :alt => t('socialstream')), root_path) %>
|
|
7
6
|
</div>
|
|
8
7
|
<% if user_signed_in? %>
|
|
9
8
|
<%=image_tag("btn/btn_home.png",:class=>"btn_config") %>
|
data/social_stream.gemspec
CHANGED
|
@@ -17,15 +17,15 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
s.add_runtime_dependency('stringex', '~> 1.2.0')
|
|
18
18
|
s.add_runtime_dependency('paperclip', '~> 2.3.4')
|
|
19
19
|
s.add_runtime_dependency('jquery-rails', '~> 0.2.5')
|
|
20
|
-
s.add_runtime_dependency('cancan', '~> 1.
|
|
20
|
+
s.add_runtime_dependency('cancan', '~> 1.5.1')
|
|
21
21
|
s.add_runtime_dependency('will_paginate', '~> 3.0.pre2')
|
|
22
|
-
s.add_development_dependency('rails', '~> 3.0.
|
|
22
|
+
s.add_development_dependency('rails', '~> 3.0.4')
|
|
23
23
|
s.add_development_dependency('capybara', '~> 0.3.9')
|
|
24
24
|
s.add_development_dependency('sqlite3-ruby')
|
|
25
25
|
if RUBY_VERSION < '1.9'
|
|
26
26
|
s.add_development_dependency('ruby-debug', '~> 0.10.3')
|
|
27
27
|
end
|
|
28
|
-
s.add_development_dependency('rspec-rails', '~> 2.
|
|
28
|
+
s.add_development_dependency('rspec-rails', '~> 2.4.1')
|
|
29
29
|
s.add_development_dependency('factory_girl', '~> 1.3.2')
|
|
30
30
|
s.add_development_dependency('forgery', '~> 0.3.6')
|
|
31
31
|
end
|
data/spec/spec_helper.rb
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
ENV["RAILS_ENV"] = "test"
|
|
3
3
|
|
|
4
4
|
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
|
5
|
-
require "rails/test_help"
|
|
6
5
|
require "rspec/rails"
|
|
7
6
|
|
|
8
7
|
ActionMailer::Base.delivery_method = :test
|
|
@@ -29,12 +28,7 @@ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
|
|
29
28
|
require 'factory_girl'
|
|
30
29
|
Dir["#{File.dirname(__FILE__)}/factories/*.rb"].each {|f| require f}
|
|
31
30
|
|
|
32
|
-
|
|
33
|
-
# Remove this line if you don't want Rspec's should and should_not
|
|
34
|
-
# methods or matchers
|
|
35
|
-
require 'rspec/expectations'
|
|
36
|
-
config.include Rspec::Matchers
|
|
37
|
-
|
|
31
|
+
RSpec.configure do |config|
|
|
38
32
|
# == Mock Framework
|
|
39
33
|
config.mock_with :rspec
|
|
40
34
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: social_stream
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.3.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- GING - DIT - UPM
|
|
@@ -16,7 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2011-
|
|
19
|
+
date: 2011-02-09 00:00:00 +01:00
|
|
20
20
|
default_executable:
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|
|
@@ -155,12 +155,12 @@ dependencies:
|
|
|
155
155
|
requirements:
|
|
156
156
|
- - ~>
|
|
157
157
|
- !ruby/object:Gem::Version
|
|
158
|
-
hash:
|
|
158
|
+
hash: 1
|
|
159
159
|
segments:
|
|
160
160
|
- 1
|
|
161
|
-
-
|
|
162
|
-
-
|
|
163
|
-
version: 1.
|
|
161
|
+
- 5
|
|
162
|
+
- 1
|
|
163
|
+
version: 1.5.1
|
|
164
164
|
type: :runtime
|
|
165
165
|
version_requirements: *id009
|
|
166
166
|
- !ruby/object:Gem::Dependency
|
|
@@ -187,12 +187,12 @@ dependencies:
|
|
|
187
187
|
requirements:
|
|
188
188
|
- - ~>
|
|
189
189
|
- !ruby/object:Gem::Version
|
|
190
|
-
hash:
|
|
190
|
+
hash: 15
|
|
191
191
|
segments:
|
|
192
192
|
- 3
|
|
193
193
|
- 0
|
|
194
|
-
-
|
|
195
|
-
version: 3.0.
|
|
194
|
+
- 4
|
|
195
|
+
version: 3.0.4
|
|
196
196
|
type: :development
|
|
197
197
|
version_requirements: *id011
|
|
198
198
|
- !ruby/object:Gem::Dependency
|
|
@@ -249,12 +249,12 @@ dependencies:
|
|
|
249
249
|
requirements:
|
|
250
250
|
- - ~>
|
|
251
251
|
- !ruby/object:Gem::Version
|
|
252
|
-
hash:
|
|
252
|
+
hash: 29
|
|
253
253
|
segments:
|
|
254
254
|
- 2
|
|
255
|
-
-
|
|
256
|
-
-
|
|
257
|
-
version: 2.
|
|
255
|
+
- 4
|
|
256
|
+
- 1
|
|
257
|
+
version: 2.4.1
|
|
258
258
|
type: :development
|
|
259
259
|
version_requirements: *id015
|
|
260
260
|
- !ruby/object:Gem::Dependency
|
|
@@ -299,6 +299,7 @@ extra_rdoc_files: []
|
|
|
299
299
|
|
|
300
300
|
files:
|
|
301
301
|
- .gitignore
|
|
302
|
+
- .rspec
|
|
302
303
|
- .yardopts
|
|
303
304
|
- Gemfile
|
|
304
305
|
- LICENSE
|
|
@@ -523,6 +524,7 @@ files:
|
|
|
523
524
|
- lib/generators/social_stream/templates/public/images/frontpage/share.png
|
|
524
525
|
- lib/generators/social_stream/templates/public/images/frontpage/tags.png
|
|
525
526
|
- lib/generators/social_stream/templates/public/images/frontpage/yellow_sq.png
|
|
527
|
+
- lib/generators/social_stream/templates/public/images/header-logo.png
|
|
526
528
|
- lib/generators/social_stream/templates/public/images/left.png
|
|
527
529
|
- lib/generators/social_stream/templates/public/images/logo.png
|
|
528
530
|
- lib/generators/social_stream/templates/public/images/logos/actor/group.png
|