t1k 0.0.1 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +0 -8
- data/lib/t1k.rb +21 -64
- data/lib/t1k/engine.rb +2 -2
- data/lib/t1k/repositories/bitbucket.rb +23 -0
- data/lib/t1k/repositories/github.rb +46 -0
- data/lib/t1k/repository.rb +20 -0
- data/lib/t1k/tracker.rb +20 -0
- data/lib/t1k/trackers/pivotal.rb +23 -0
- data/lib/t1k/trackers/trello.rb +54 -0
- data/lib/t1k/version.rb +2 -2
- data/lib/tasks/commit.rake +1 -1
- data/lib/tasks/hack.rake +1 -1
- data/lib/tasks/ship.rake +1 -1
- data/lib/tasks/sink.rake +1 -1
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/{app/assets/javascripts/t1k → test/dummy/app/assets/javascripts}/application.js +0 -0
- data/{app/assets/stylesheets/t1k → test/dummy/app/assets/stylesheets}/application.css +0 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/test_helper.rb +19 -0
- data/test/tk1_test.rb +36 -0
- metadata +99 -13
- data/app/controllers/t1k/application_controller.rb +0 -4
- data/app/helpers/t1k/application_helper.rb +0 -4
- data/app/views/layouts/t1k/application.html.erb +0 -14
- data/config/routes.rb +0 -2
@@ -0,0 +1,22 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure the secrets in this file are kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
|
13
|
+
development:
|
14
|
+
secret_key_base: eda0e456e5f4c168b5820004875741b320370a695b9e95e9da74305f08abe8ec4d725da809e9dc3810931325e45e4e3a74c44053a8c4e2c73951cec3db2252ec
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: 5bfaf18c1efa0a167c77017b876a751ea4c9a4363bddb8d8722b5545537cc5f74f7c7013412b68f6e0007334f041a5a6bb7f15653bbdea407598ec76146b011d
|
18
|
+
|
19
|
+
# Do not keep production secrets in the repository,
|
20
|
+
# instead read values from the environment.
|
21
|
+
production:
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/404.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/422.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The change you wanted was rejected.</h1>
|
62
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
File without changes
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# Configure Rails Environment
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
3
|
+
|
4
|
+
require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
|
5
|
+
ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
|
6
|
+
require "rails/test_help"
|
7
|
+
|
8
|
+
# Filter out Minitest backtrace while allowing backtrace from other libraries
|
9
|
+
# to be shown.
|
10
|
+
Minitest.backtrace_filter = Minitest::BacktraceFilter.new
|
11
|
+
|
12
|
+
# Load support files
|
13
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
14
|
+
|
15
|
+
# Load fixtures from the engine
|
16
|
+
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
|
17
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
18
|
+
ActiveSupport::TestCase.fixtures :all
|
19
|
+
end
|
data/test/tk1_test.rb
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class T1kTest < ActiveSupport::TestCase
|
4
|
+
|
5
|
+
test "deve configurar o repositório" do
|
6
|
+
T1k.setup do |config|
|
7
|
+
config.repository.adapter = :github
|
8
|
+
config.repository.setup do |c|
|
9
|
+
c.user = "aquinofb"
|
10
|
+
c.oauth_token = "ouathouathouathouath"
|
11
|
+
c.repo = "t1k"
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
assert_equal T1k::Repositories::Github.user, "aquinofb"
|
16
|
+
assert_equal T1k::Repositories::Github.oauth_token, "ouathouathouathouath"
|
17
|
+
assert_equal T1k::Repositories::Github.repo, "t1k"
|
18
|
+
end
|
19
|
+
|
20
|
+
test "deve configurar o tracker" do
|
21
|
+
T1k.setup do |config|
|
22
|
+
config.tracker.adapter = :trello
|
23
|
+
config.tracker.setup do |c|
|
24
|
+
c.user_name = "aquinofb"
|
25
|
+
c.member_token = "tocotocotoco"
|
26
|
+
c.board_name = "t1k"
|
27
|
+
c.developer_public_key = "publickeypublickeypublickey"
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
assert_equal T1k::Trackers::Trello.user_name, "aquinofb"
|
32
|
+
assert_equal T1k::Trackers::Trello.member_token, "tocotocotoco"
|
33
|
+
assert_equal T1k::Trackers::Trello.board_name, "t1k"
|
34
|
+
assert_equal T1k::Trackers::Trello.developer_public_key, "publickeypublickeypublickey"
|
35
|
+
end
|
36
|
+
end
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: t1k
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rodrigo Maia
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-04-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - '>='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 4.0.2
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 4.0.2
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: ruby-trello
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0.12'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: sqlite3
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
55
69
|
description: Use those scripts to create automatically branchs associated with issues
|
56
70
|
and tracked commits.
|
57
71
|
email:
|
@@ -63,20 +77,56 @@ files:
|
|
63
77
|
- MIT-LICENSE
|
64
78
|
- README.rdoc
|
65
79
|
- Rakefile
|
66
|
-
- app/assets/javascripts/t1k/application.js
|
67
|
-
- app/assets/stylesheets/t1k/application.css
|
68
|
-
- app/controllers/t1k/application_controller.rb
|
69
|
-
- app/helpers/t1k/application_helper.rb
|
70
|
-
- app/views/layouts/t1k/application.html.erb
|
71
|
-
- config/routes.rb
|
72
80
|
- lib/t1k.rb
|
73
81
|
- lib/t1k/engine.rb
|
82
|
+
- lib/t1k/repositories/bitbucket.rb
|
83
|
+
- lib/t1k/repositories/github.rb
|
84
|
+
- lib/t1k/repository.rb
|
85
|
+
- lib/t1k/tracker.rb
|
86
|
+
- lib/t1k/trackers/pivotal.rb
|
87
|
+
- lib/t1k/trackers/trello.rb
|
74
88
|
- lib/t1k/version.rb
|
75
89
|
- lib/tasks/commit.rake
|
76
90
|
- lib/tasks/hack.rake
|
77
91
|
- lib/tasks/ship.rake
|
78
92
|
- lib/tasks/sink.rake
|
79
93
|
- lib/tasks/t1k_tasks.rake
|
94
|
+
- test/dummy/README.rdoc
|
95
|
+
- test/dummy/Rakefile
|
96
|
+
- test/dummy/app/assets/javascripts/application.js
|
97
|
+
- test/dummy/app/assets/stylesheets/application.css
|
98
|
+
- test/dummy/app/controllers/application_controller.rb
|
99
|
+
- test/dummy/app/helpers/application_helper.rb
|
100
|
+
- test/dummy/app/views/layouts/application.html.erb
|
101
|
+
- test/dummy/bin/bundle
|
102
|
+
- test/dummy/bin/rails
|
103
|
+
- test/dummy/bin/rake
|
104
|
+
- test/dummy/bin/setup
|
105
|
+
- test/dummy/config.ru
|
106
|
+
- test/dummy/config/application.rb
|
107
|
+
- test/dummy/config/boot.rb
|
108
|
+
- test/dummy/config/database.yml
|
109
|
+
- test/dummy/config/environment.rb
|
110
|
+
- test/dummy/config/environments/development.rb
|
111
|
+
- test/dummy/config/environments/production.rb
|
112
|
+
- test/dummy/config/environments/test.rb
|
113
|
+
- test/dummy/config/initializers/assets.rb
|
114
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
115
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
116
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
117
|
+
- test/dummy/config/initializers/inflections.rb
|
118
|
+
- test/dummy/config/initializers/mime_types.rb
|
119
|
+
- test/dummy/config/initializers/session_store.rb
|
120
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
121
|
+
- test/dummy/config/locales/en.yml
|
122
|
+
- test/dummy/config/routes.rb
|
123
|
+
- test/dummy/config/secrets.yml
|
124
|
+
- test/dummy/public/404.html
|
125
|
+
- test/dummy/public/422.html
|
126
|
+
- test/dummy/public/500.html
|
127
|
+
- test/dummy/public/favicon.ico
|
128
|
+
- test/test_helper.rb
|
129
|
+
- test/tk1_test.rb
|
80
130
|
homepage: https://github.com/fortesinformatica/t1k
|
81
131
|
licenses:
|
82
132
|
- MIT
|
@@ -101,4 +151,40 @@ rubygems_version: 2.2.2
|
|
101
151
|
signing_key:
|
102
152
|
specification_version: 4
|
103
153
|
summary: T1K - Automated Git and Trello Workflow
|
104
|
-
test_files:
|
154
|
+
test_files:
|
155
|
+
- test/dummy/app/assets/javascripts/application.js
|
156
|
+
- test/dummy/app/assets/stylesheets/application.css
|
157
|
+
- test/dummy/app/controllers/application_controller.rb
|
158
|
+
- test/dummy/app/helpers/application_helper.rb
|
159
|
+
- test/dummy/app/views/layouts/application.html.erb
|
160
|
+
- test/dummy/bin/bundle
|
161
|
+
- test/dummy/bin/rails
|
162
|
+
- test/dummy/bin/rake
|
163
|
+
- test/dummy/bin/setup
|
164
|
+
- test/dummy/config/application.rb
|
165
|
+
- test/dummy/config/boot.rb
|
166
|
+
- test/dummy/config/database.yml
|
167
|
+
- test/dummy/config/environment.rb
|
168
|
+
- test/dummy/config/environments/development.rb
|
169
|
+
- test/dummy/config/environments/production.rb
|
170
|
+
- test/dummy/config/environments/test.rb
|
171
|
+
- test/dummy/config/initializers/assets.rb
|
172
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
173
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
174
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
175
|
+
- test/dummy/config/initializers/inflections.rb
|
176
|
+
- test/dummy/config/initializers/mime_types.rb
|
177
|
+
- test/dummy/config/initializers/session_store.rb
|
178
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
179
|
+
- test/dummy/config/locales/en.yml
|
180
|
+
- test/dummy/config/routes.rb
|
181
|
+
- test/dummy/config/secrets.yml
|
182
|
+
- test/dummy/config.ru
|
183
|
+
- test/dummy/public/404.html
|
184
|
+
- test/dummy/public/422.html
|
185
|
+
- test/dummy/public/500.html
|
186
|
+
- test/dummy/public/favicon.ico
|
187
|
+
- test/dummy/Rakefile
|
188
|
+
- test/dummy/README.rdoc
|
189
|
+
- test/test_helper.rb
|
190
|
+
- test/tk1_test.rb
|