a4nt 1.0.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +1 -1
- data/README.md +19 -2
- data/Rakefile +1 -1
- data/app/controllers/a4nt/announcements_controller.rb +8 -2
- data/app/models/a4nt/announcement.rb +0 -2
- data/lib/a4nt/version.rb +1 -1
- data/test/dummy/log/development.log +0 -2205
- data/test/dummy/log/test.log +435 -64
- data/test/dummy_rails4/README.rdoc +28 -0
- data/test/dummy_rails4/Rakefile +6 -0
- data/test/dummy_rails4/app/assets/javascripts/application.js +13 -0
- data/test/dummy_rails4/app/assets/stylesheets/application.css +13 -0
- data/test/dummy_rails4/app/controllers/application_controller.rb +5 -0
- data/test/dummy_rails4/app/helpers/application_helper.rb +2 -0
- data/test/dummy_rails4/app/views/layouts/application.html.erb +14 -0
- data/test/dummy_rails4/bin/bundle +3 -0
- data/test/dummy_rails4/bin/rails +4 -0
- data/test/dummy_rails4/bin/rake +4 -0
- data/test/dummy_rails4/config.ru +4 -0
- data/test/dummy_rails4/config/application.rb +23 -0
- data/test/dummy_rails4/config/boot.rb +5 -0
- data/test/dummy_rails4/config/database.yml +25 -0
- data/test/dummy_rails4/config/environment.rb +5 -0
- data/test/dummy_rails4/config/environments/development.rb +29 -0
- data/test/dummy_rails4/config/environments/production.rb +80 -0
- data/test/dummy_rails4/config/environments/test.rb +36 -0
- data/test/dummy_rails4/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy_rails4/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy_rails4/config/initializers/inflections.rb +16 -0
- data/test/dummy_rails4/config/initializers/mime_types.rb +5 -0
- data/test/dummy_rails4/config/initializers/secret_token.rb +12 -0
- data/test/dummy_rails4/config/initializers/session_store.rb +3 -0
- data/test/dummy_rails4/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy_rails4/config/locales/en.yml +23 -0
- data/test/dummy_rails4/config/routes.rb +4 -0
- data/test/dummy_rails4/db/schema.rb +27 -0
- data/test/{dummy → dummy_rails4}/db/test.sqlite3 +0 -0
- data/test/dummy_rails4/log/test.log +884 -0
- data/test/dummy_rails4/public/404.html +58 -0
- data/test/dummy_rails4/public/422.html +58 -0
- data/test/dummy_rails4/public/500.html +57 -0
- data/test/dummy_rails4/public/favicon.ico +0 -0
- data/test/dummy_rails4/tmp/cache/assets/test/sprockets/00945d57ebe03c366903bdea3f280fdd +0 -0
- data/test/{dummy/tmp/cache/assets/CD0/410/sprockets%2F4610e3716682bd81225d1af060dec17e → dummy_rails4/tmp/cache/assets/test/sprockets/1748fda09da1ed4f51ad565fc7df5a52} +0 -0
- data/test/{dummy/tmp/cache/assets/CD1/7A0/sprockets%2F1c8986854dbe744776f98066ddea5148 → dummy_rails4/tmp/cache/assets/test/sprockets/2537ccbe4b13249c7f51e21ef0180b2b} +0 -0
- data/test/dummy_rails4/tmp/cache/assets/test/sprockets/35a3e1d53221b566385d55604b1f2f81 +0 -0
- data/test/{dummy/tmp/cache/assets/DCF/230/sprockets%2F1748fda09da1ed4f51ad565fc7df5a52 → dummy_rails4/tmp/cache/assets/test/sprockets/4610e3716682bd81225d1af060dec17e} +0 -0
- data/test/{dummy/tmp/cache/assets/EC3/660/sprockets%2F6dfdc90eece35f8b7e00fdd21b9ecfcd → dummy_rails4/tmp/cache/assets/test/sprockets/6dfdc90eece35f8b7e00fdd21b9ecfcd} +0 -0
- data/test/dummy_rails4/tmp/cache/assets/test/sprockets/933c4e72c3d556f7f7225ddbde1d1c7e +0 -0
- data/test/{dummy/tmp/cache/assets/E16/A70/sprockets%2Fd3cc19a7697edd9efe18d8f92f0efe30 → dummy_rails4/tmp/cache/assets/test/sprockets/990e4858f384293a7f3dfe04f7b86b4a} +0 -0
- data/test/{dummy/tmp/cache/assets/E95/420/sprockets%2Fd6ce1bdc5f9e8e55a7dae3b2fcf82ed2 → dummy_rails4/tmp/cache/assets/test/sprockets/affaf5c0a2f6f6bd21efb946fb357b7d} +0 -0
- data/test/{dummy/tmp/cache/assets/DC0/880/sprockets%2Fc14ba2e3509e7ab8b1a33d276ed4d5dc → dummy_rails4/tmp/cache/assets/test/sprockets/c14ba2e3509e7ab8b1a33d276ed4d5dc} +0 -0
- data/test/dummy_rails4/tmp/cache/assets/test/sprockets/dc903ff3b8bd770c927bcb4e7bb48387 +0 -0
- data/test/dummy_rails4/tmp/cache/assets/test/sprockets/e9e458ddec5a8f3dcbe083bf77b923ab +0 -0
- data/test/dummy_rails4/tmp/cache/assets/test/sprockets/ea2842a158fbf3838d6c08ccceee4833 +0 -0
- data/test/{dummy/tmp/cache/assets/D98/1A0/sprockets%2F21fba9c5cba0584b66f4a9f314abe196 → dummy_rails4/tmp/cache/assets/test/sprockets/fb2e6494356a9cc22aeef079f67690b2} +0 -0
- data/test/functional/a4nt/announcements_controller_test.rb +1 -1
- data/test/test_helper.rb +14 -3
- metadata +109 -59
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +0 -27
- data/test/dummy/tmp/cache/assets/C74/D00/sprockets%2F35a3e1d53221b566385d55604b1f2f81 +0 -0
- data/test/dummy/tmp/cache/assets/D68/870/sprockets%2F00945d57ebe03c366903bdea3f280fdd +0 -0
- data/test/dummy/tmp/cache/assets/DA4/5F0/sprockets%2Fea2842a158fbf3838d6c08ccceee4833 +0 -0
- data/test/dummy/tmp/cache/assets/DA5/880/sprockets%2F933c4e72c3d556f7f7225ddbde1d1c7e +0 -0
- data/test/dummy/tmp/cache/assets/DAA/E90/sprockets%2Fdc903ff3b8bd770c927bcb4e7bb48387 +0 -0
- data/test/dummy/tmp/cache/assets/E39/E90/sprockets%2Fe9e458ddec5a8f3dcbe083bf77b923ab +0 -0
@@ -0,0 +1,58 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/404.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
54
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
55
|
+
</div>
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
57
|
+
</body>
|
58
|
+
</html>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/422.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>The change you wanted was rejected.</h1>
|
54
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
55
|
+
</div>
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
57
|
+
</body>
|
58
|
+
</html>
|
@@ -0,0 +1,57 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/500.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>We're sorry, but something went wrong.</h1>
|
54
|
+
</div>
|
55
|
+
<p>If you are the application owner check the logs for more information.</p>
|
56
|
+
</body>
|
57
|
+
</html>
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/test/test_helper.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Configure Rails Environment
|
2
2
|
ENV["RAILS_ENV"] = "test"
|
3
3
|
|
4
|
-
require File.expand_path("../
|
4
|
+
require File.expand_path("../dummy_rails4/config/environment.rb", __FILE__)
|
5
5
|
require "rails/test_help"
|
6
6
|
|
7
7
|
Rails.backtrace_cleaner.remove_silencers!
|
@@ -10,6 +10,17 @@ Rails.backtrace_cleaner.remove_silencers!
|
|
10
10
|
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
11
11
|
|
12
12
|
# Load fixtures from the engine
|
13
|
-
|
14
|
-
|
13
|
+
# See Also: https://github.com/rails/rails/issues/4971
|
14
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
15
|
+
|
16
|
+
class ActiveSupport::TestCase
|
17
|
+
fixtures :all
|
18
|
+
end
|
19
|
+
|
20
|
+
module A4nt
|
21
|
+
class ActionController::TestCase
|
22
|
+
setup do
|
23
|
+
@routes = Engine.routes
|
24
|
+
end
|
25
|
+
end
|
15
26
|
end
|
metadata
CHANGED
@@ -1,46 +1,41 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: a4nt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
5
|
-
prerelease:
|
4
|
+
version: 2.0.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- ma2ge
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2013-
|
11
|
+
date: 2013-09-28 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: rails
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - '>='
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version:
|
19
|
+
version: 4.0.0
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - '>='
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
26
|
+
version: 4.0.0
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: sqlite3
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - '>='
|
36
32
|
- !ruby/object:Gem::Version
|
37
33
|
version: '0'
|
38
34
|
type: :development
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
|
-
- -
|
38
|
+
- - '>='
|
44
39
|
- !ruby/object:Gem::Version
|
45
40
|
version: '0'
|
46
41
|
description: Rails Engine managing simple announcements. A4nt is mountable Engine
|
@@ -98,9 +93,6 @@ files:
|
|
98
93
|
- test/dummy/config/locales/en.yml
|
99
94
|
- test/dummy/config/routes.rb
|
100
95
|
- test/dummy/config.ru
|
101
|
-
- test/dummy/db/development.sqlite3
|
102
|
-
- test/dummy/db/schema.rb
|
103
|
-
- test/dummy/db/test.sqlite3
|
104
96
|
- test/dummy/log/development.log
|
105
97
|
- test/dummy/log/test.log
|
106
98
|
- test/dummy/public/404.html
|
@@ -110,20 +102,54 @@ files:
|
|
110
102
|
- test/dummy/Rakefile
|
111
103
|
- test/dummy/README.rdoc
|
112
104
|
- test/dummy/script/rails
|
113
|
-
- test/
|
114
|
-
- test/
|
115
|
-
- test/
|
116
|
-
- test/
|
117
|
-
- test/
|
118
|
-
- test/
|
119
|
-
- test/
|
120
|
-
- test/
|
121
|
-
- test/
|
122
|
-
- test/
|
123
|
-
- test/
|
124
|
-
- test/
|
125
|
-
- test/
|
126
|
-
- test/
|
105
|
+
- test/dummy_rails4/app/assets/javascripts/application.js
|
106
|
+
- test/dummy_rails4/app/assets/stylesheets/application.css
|
107
|
+
- test/dummy_rails4/app/controllers/application_controller.rb
|
108
|
+
- test/dummy_rails4/app/helpers/application_helper.rb
|
109
|
+
- test/dummy_rails4/app/views/layouts/application.html.erb
|
110
|
+
- test/dummy_rails4/bin/bundle
|
111
|
+
- test/dummy_rails4/bin/rails
|
112
|
+
- test/dummy_rails4/bin/rake
|
113
|
+
- test/dummy_rails4/config/application.rb
|
114
|
+
- test/dummy_rails4/config/boot.rb
|
115
|
+
- test/dummy_rails4/config/database.yml
|
116
|
+
- test/dummy_rails4/config/environment.rb
|
117
|
+
- test/dummy_rails4/config/environments/development.rb
|
118
|
+
- test/dummy_rails4/config/environments/production.rb
|
119
|
+
- test/dummy_rails4/config/environments/test.rb
|
120
|
+
- test/dummy_rails4/config/initializers/backtrace_silencers.rb
|
121
|
+
- test/dummy_rails4/config/initializers/filter_parameter_logging.rb
|
122
|
+
- test/dummy_rails4/config/initializers/inflections.rb
|
123
|
+
- test/dummy_rails4/config/initializers/mime_types.rb
|
124
|
+
- test/dummy_rails4/config/initializers/secret_token.rb
|
125
|
+
- test/dummy_rails4/config/initializers/session_store.rb
|
126
|
+
- test/dummy_rails4/config/initializers/wrap_parameters.rb
|
127
|
+
- test/dummy_rails4/config/locales/en.yml
|
128
|
+
- test/dummy_rails4/config/routes.rb
|
129
|
+
- test/dummy_rails4/config.ru
|
130
|
+
- test/dummy_rails4/db/schema.rb
|
131
|
+
- test/dummy_rails4/db/test.sqlite3
|
132
|
+
- test/dummy_rails4/log/test.log
|
133
|
+
- test/dummy_rails4/public/404.html
|
134
|
+
- test/dummy_rails4/public/422.html
|
135
|
+
- test/dummy_rails4/public/500.html
|
136
|
+
- test/dummy_rails4/public/favicon.ico
|
137
|
+
- test/dummy_rails4/Rakefile
|
138
|
+
- test/dummy_rails4/README.rdoc
|
139
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/00945d57ebe03c366903bdea3f280fdd
|
140
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/1748fda09da1ed4f51ad565fc7df5a52
|
141
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/2537ccbe4b13249c7f51e21ef0180b2b
|
142
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/35a3e1d53221b566385d55604b1f2f81
|
143
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/4610e3716682bd81225d1af060dec17e
|
144
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/6dfdc90eece35f8b7e00fdd21b9ecfcd
|
145
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/933c4e72c3d556f7f7225ddbde1d1c7e
|
146
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/990e4858f384293a7f3dfe04f7b86b4a
|
147
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/affaf5c0a2f6f6bd21efb946fb357b7d
|
148
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/c14ba2e3509e7ab8b1a33d276ed4d5dc
|
149
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/dc903ff3b8bd770c927bcb4e7bb48387
|
150
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/e9e458ddec5a8f3dcbe083bf77b923ab
|
151
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/ea2842a158fbf3838d6c08ccceee4833
|
152
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/fb2e6494356a9cc22aeef079f67690b2
|
127
153
|
- test/fixtures/a4nt/announcements.yml
|
128
154
|
- test/functional/a4nt/announcements_controller_test.rb
|
129
155
|
- test/integration/navigation_test.rb
|
@@ -132,33 +158,26 @@ files:
|
|
132
158
|
- test/unit/helpers/a4nt/announcements_helper_test.rb
|
133
159
|
homepage: https://github.com/ma2gedev/a4nt
|
134
160
|
licenses: []
|
161
|
+
metadata: {}
|
135
162
|
post_install_message:
|
136
163
|
rdoc_options: []
|
137
164
|
require_paths:
|
138
165
|
- lib
|
139
166
|
required_ruby_version: !ruby/object:Gem::Requirement
|
140
|
-
none: false
|
141
167
|
requirements:
|
142
|
-
- -
|
168
|
+
- - '>='
|
143
169
|
- !ruby/object:Gem::Version
|
144
170
|
version: '0'
|
145
|
-
segments:
|
146
|
-
- 0
|
147
|
-
hash: -3897802414745457598
|
148
171
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
149
|
-
none: false
|
150
172
|
requirements:
|
151
|
-
- -
|
173
|
+
- - '>='
|
152
174
|
- !ruby/object:Gem::Version
|
153
175
|
version: '0'
|
154
|
-
segments:
|
155
|
-
- 0
|
156
|
-
hash: -3897802414745457598
|
157
176
|
requirements: []
|
158
177
|
rubyforge_project:
|
159
|
-
rubygems_version:
|
178
|
+
rubygems_version: 2.0.3
|
160
179
|
signing_key:
|
161
|
-
specification_version:
|
180
|
+
specification_version: 4
|
162
181
|
summary: A4nt is a simple announcements plugin for Ruby on Rails.
|
163
182
|
test_files:
|
164
183
|
- test/a4nt_test.rb
|
@@ -183,9 +202,6 @@ test_files:
|
|
183
202
|
- test/dummy/config/locales/en.yml
|
184
203
|
- test/dummy/config/routes.rb
|
185
204
|
- test/dummy/config.ru
|
186
|
-
- test/dummy/db/development.sqlite3
|
187
|
-
- test/dummy/db/schema.rb
|
188
|
-
- test/dummy/db/test.sqlite3
|
189
205
|
- test/dummy/log/development.log
|
190
206
|
- test/dummy/log/test.log
|
191
207
|
- test/dummy/public/404.html
|
@@ -195,20 +211,54 @@ test_files:
|
|
195
211
|
- test/dummy/Rakefile
|
196
212
|
- test/dummy/README.rdoc
|
197
213
|
- test/dummy/script/rails
|
198
|
-
- test/
|
199
|
-
- test/
|
200
|
-
- test/
|
201
|
-
- test/
|
202
|
-
- test/
|
203
|
-
- test/
|
204
|
-
- test/
|
205
|
-
- test/
|
206
|
-
- test/
|
207
|
-
- test/
|
208
|
-
- test/
|
209
|
-
- test/
|
210
|
-
- test/
|
211
|
-
- test/
|
214
|
+
- test/dummy_rails4/app/assets/javascripts/application.js
|
215
|
+
- test/dummy_rails4/app/assets/stylesheets/application.css
|
216
|
+
- test/dummy_rails4/app/controllers/application_controller.rb
|
217
|
+
- test/dummy_rails4/app/helpers/application_helper.rb
|
218
|
+
- test/dummy_rails4/app/views/layouts/application.html.erb
|
219
|
+
- test/dummy_rails4/bin/bundle
|
220
|
+
- test/dummy_rails4/bin/rails
|
221
|
+
- test/dummy_rails4/bin/rake
|
222
|
+
- test/dummy_rails4/config/application.rb
|
223
|
+
- test/dummy_rails4/config/boot.rb
|
224
|
+
- test/dummy_rails4/config/database.yml
|
225
|
+
- test/dummy_rails4/config/environment.rb
|
226
|
+
- test/dummy_rails4/config/environments/development.rb
|
227
|
+
- test/dummy_rails4/config/environments/production.rb
|
228
|
+
- test/dummy_rails4/config/environments/test.rb
|
229
|
+
- test/dummy_rails4/config/initializers/backtrace_silencers.rb
|
230
|
+
- test/dummy_rails4/config/initializers/filter_parameter_logging.rb
|
231
|
+
- test/dummy_rails4/config/initializers/inflections.rb
|
232
|
+
- test/dummy_rails4/config/initializers/mime_types.rb
|
233
|
+
- test/dummy_rails4/config/initializers/secret_token.rb
|
234
|
+
- test/dummy_rails4/config/initializers/session_store.rb
|
235
|
+
- test/dummy_rails4/config/initializers/wrap_parameters.rb
|
236
|
+
- test/dummy_rails4/config/locales/en.yml
|
237
|
+
- test/dummy_rails4/config/routes.rb
|
238
|
+
- test/dummy_rails4/config.ru
|
239
|
+
- test/dummy_rails4/db/schema.rb
|
240
|
+
- test/dummy_rails4/db/test.sqlite3
|
241
|
+
- test/dummy_rails4/log/test.log
|
242
|
+
- test/dummy_rails4/public/404.html
|
243
|
+
- test/dummy_rails4/public/422.html
|
244
|
+
- test/dummy_rails4/public/500.html
|
245
|
+
- test/dummy_rails4/public/favicon.ico
|
246
|
+
- test/dummy_rails4/Rakefile
|
247
|
+
- test/dummy_rails4/README.rdoc
|
248
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/00945d57ebe03c366903bdea3f280fdd
|
249
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/1748fda09da1ed4f51ad565fc7df5a52
|
250
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/2537ccbe4b13249c7f51e21ef0180b2b
|
251
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/35a3e1d53221b566385d55604b1f2f81
|
252
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/4610e3716682bd81225d1af060dec17e
|
253
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/6dfdc90eece35f8b7e00fdd21b9ecfcd
|
254
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/933c4e72c3d556f7f7225ddbde1d1c7e
|
255
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/990e4858f384293a7f3dfe04f7b86b4a
|
256
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/affaf5c0a2f6f6bd21efb946fb357b7d
|
257
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/c14ba2e3509e7ab8b1a33d276ed4d5dc
|
258
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/dc903ff3b8bd770c927bcb4e7bb48387
|
259
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/e9e458ddec5a8f3dcbe083bf77b923ab
|
260
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/ea2842a158fbf3838d6c08ccceee4833
|
261
|
+
- test/dummy_rails4/tmp/cache/assets/test/sprockets/fb2e6494356a9cc22aeef079f67690b2
|
212
262
|
- test/fixtures/a4nt/announcements.yml
|
213
263
|
- test/functional/a4nt/announcements_controller_test.rb
|
214
264
|
- test/integration/navigation_test.rb
|