forked from integrity/integrity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintegrity.gemspec
More file actions
136 lines (129 loc) · 4.08 KB
/
integrity.gemspec
File metadata and controls
136 lines (129 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
Gem::Specification.new do |s|
s.name = "integrity"
s.version = "0.1.9.3"
s.date = "2009-04-06"
s.description = "Your Friendly Continuous Integration server. Easy, fun and painless!"
s.summary = "The easy and fun Continuous Integration server"
s.homepage = "http://integrityapp.com"
s.authors = ["Nicolás Sanguinetti", "Simon Rozet"]
s.email = "info@integrityapp.com"
s.require_paths = ["lib"]
s.executables = ["integrity"]
s.post_install_message = "Run `integrity help` for information on how to setup Integrity."
s.rubyforge_project = "integrity"
s.has_rdoc = false
s.rubygems_version = "1.3.1"
s.add_dependency "sinatra", [">= 0.9.1.1"]
s.add_dependency "sinatra-authorization"
s.add_dependency "haml", [">= 2.0.0"]
s.add_dependency "data_mapper", ["= 0.9.11"]
s.add_dependency "uuidtools" # required by dm-types
s.add_dependency "bcrypt-ruby" # required by dm-types
s.add_dependency "json"
s.add_dependency "thor"
if s.respond_to?(:add_development_dependency)
s.add_development_dependency "rr"
s.add_development_dependency "mocha"
s.add_development_dependency "webrat"
s.add_development_dependency "do_sqlite3"
s.add_development_dependency "dm-sweatshop"
s.add_development_dependency "ParseTree" # required by dm-sweatshop
s.add_development_dependency "jeremymcanally-context"
s.add_development_dependency "jeremymcanally-matchy"
s.add_development_dependency "jeremymcanally-pending"
s.add_development_dependency "foca-storyteller"
end
s.files = %w[
.gitignore
CHANGES
README.md
Rakefile
bin/integrity
config/config.sample.ru
config/config.sample.yml
config/heroku/.gems
config/heroku/Rakefile
config/heroku/config.ru
config/heroku/integrity-config.rb
config/thin.sample.yml
integrity.gemspec
lib/integrity.rb
lib/integrity/app.rb
lib/integrity/author.rb
lib/integrity/build.rb
lib/integrity/commit.rb
lib/integrity/core_ext/object.rb
lib/integrity/helpers.rb
lib/integrity/helpers/authorization.rb
lib/integrity/helpers/breadcrumbs.rb
lib/integrity/helpers/pretty_output.rb
lib/integrity/helpers/rendering.rb
lib/integrity/helpers/resources.rb
lib/integrity/helpers/urls.rb
lib/integrity/installer.rb
lib/integrity/migrations.rb
lib/integrity/notifier.rb
lib/integrity/notifier/base.rb
lib/integrity/notifier/test.rb
lib/integrity/notifier/test/fixtures.rb
lib/integrity/notifier/test/hpricot_matcher.rb
lib/integrity/project.rb
lib/integrity/project/notifiers.rb
lib/integrity/project/push.rb
lib/integrity/project_builder.rb
lib/integrity/scm.rb
lib/integrity/scm/git.rb
lib/integrity/scm/git/uri.rb
public/buttons.css
public/reset.css
public/spinner.gif
test/acceptance/api_test.rb
test/acceptance/browse_project_builds_test.rb
test/acceptance/browse_project_test.rb
test/acceptance/build_notifications_test.rb
test/acceptance/create_project_test.rb
test/acceptance/delete_project_test.rb
test/acceptance/edit_project_test.rb
test/acceptance/error_page_test.rb
test/acceptance/installer_test.rb
test/acceptance/manual_build_project_test.rb
test/acceptance/not_found_page_test.rb
test/acceptance/project_syndication_test.rb
test/acceptance/stylesheet_test.rb
test/acceptance/unauthorized_page_test.rb
test/helpers.rb
test/helpers/acceptance.rb
test/helpers/acceptance/email_notifier.rb
test/helpers/acceptance/git_helper.rb
test/helpers/acceptance/notifier_helper.rb
test/helpers/acceptance/textfile_notifier.rb
test/helpers/expectations.rb
test/helpers/expectations/be_a.rb
test/helpers/expectations/change.rb
test/helpers/expectations/have.rb
test/helpers/expectations/predicates.rb
test/helpers/initial_migration_fixture.sql
test/unit/build_test.rb
test/unit/commit_test.rb
test/unit/helpers_test.rb
test/unit/integrity_test.rb
test/unit/migrations_test.rb
test/unit/notifier/base_test.rb
test/unit/notifier_test.rb
test/unit/project_builder_test.rb
test/unit/project_test.rb
test/unit/scm_test.rb
views/_commit_info.haml
views/build.haml
views/error.haml
views/home.haml
views/integrity.sass
views/layout.haml
views/new.haml
views/not_found.haml
views/notifier.haml
views/project.builder
views/project.haml
views/unauthorized.haml
]
end