This repository has been archived by the owner on Jan 29, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
MVC Rework #83
Merged
Merged
MVC Rework #83
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
# Matches multiple files with brace expansion notation | ||
# Set default charset | ||
[*.{rb,ru}] | ||
charset = utf-8 | ||
indent_size = space | ||
indent_size = 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Alexander Fisher alex@linfratech.co.uk | ||
Ben Ford ben.ford@puppetlabs.com | ||
Chet Hosey ChetRHosey@eaton.com | ||
David Hollinger III david.hollinger@moduletux.com | ||
Ewoud Kohl van Wijngaarden ewoud@kohlvanwijngaarden.nl | ||
Lee Lowder l.lowder@keepingyouhonest.net | ||
Tim Meusel tim@bastelfreak.de | ||
Will Berman wlbberman@gmail.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,39 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
gem 'sinatra' | ||
gem 'sinatra-contrib' | ||
# gem 'sinatra-authentication' | ||
gem 'activerecord', '~> 4.2', '>= 4.2.6', require: 'active_record' | ||
gem 'bcrypt' | ||
gem 'github_changelog_generator' | ||
gem 'mcollective-client' | ||
gem 'pry' | ||
gem 'puma' | ||
gem 'r10k' | ||
gem 'rake' | ||
gem 'require_all' | ||
gem 'rocket-chat-notifier' | ||
gem 'shotgun' | ||
gem 'sinatra-activerecord', require: 'sinatra/activerecord' | ||
gem 'slack-notifier' | ||
gem 'sqlite3' | ||
gem 'thin' | ||
gem 'tux' | ||
|
||
group :development do | ||
gem 'debase' | ||
gem 'rubocop' | ||
gem 'ruby-debug-ide' | ||
gem 'yard' | ||
end | ||
|
||
group :test do | ||
gem 'capybara' | ||
gem 'coveralls' | ||
gem 'database_cleaner', git: 'https://github.com/bmabey/database_cleaner.git' | ||
gem 'rack-test' | ||
gem 'rspec' | ||
gem 'simplecov' | ||
gem 'simplecov-console' | ||
gem 'webmock' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,268 @@ | ||
GIT | ||
remote: https://github.com/bmabey/database_cleaner.git | ||
revision: 4c2408ffdbbd990e78d6590f4ef6ba5e58aca673 | ||
specs: | ||
database_cleaner (1.7.0) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
activemodel (4.2.11) | ||
activesupport (= 4.2.11) | ||
builder (~> 3.1) | ||
activerecord (4.2.11) | ||
activemodel (= 4.2.11) | ||
activesupport (= 4.2.11) | ||
arel (~> 6.0) | ||
activesupport (4.2.11) | ||
i18n (~> 0.7) | ||
minitest (~> 5.1) | ||
thread_safe (~> 0.3, >= 0.3.4) | ||
tzinfo (~> 1.1) | ||
addressable (2.5.2) | ||
public_suffix (>= 2.0.2, < 4.0) | ||
ansi (1.5.0) | ||
arel (6.0.4) | ||
ast (2.4.0) | ||
backports (3.11.4) | ||
bcrypt (3.1.12) | ||
bond (0.5.1) | ||
builder (3.2.3) | ||
capybara (3.12.0) | ||
addressable | ||
mini_mime (>= 0.1.3) | ||
nokogiri (~> 1.8) | ||
rack (>= 1.6.0) | ||
rack-test (>= 0.6.3) | ||
regexp_parser (~> 1.2) | ||
xpath (~> 3.2) | ||
coderay (1.1.2) | ||
colored (1.2) | ||
concurrent-ruby (1.1.4) | ||
coveralls (0.8.22) | ||
json (>= 1.8, < 3) | ||
simplecov (~> 0.16.1) | ||
term-ansicolor (~> 1.3) | ||
thor (~> 0.19.4) | ||
tins (~> 1.6) | ||
crack (0.4.3) | ||
safe_yaml (~> 1.0.0) | ||
cri (2.15.2) | ||
colored (~> 1.2) | ||
daemons (1.3.1) | ||
debase (0.2.2) | ||
debase-ruby_core_source (>= 0.10.2) | ||
debase-ruby_core_source (0.10.4) | ||
diff-lcs (1.3) | ||
docile (1.3.1) | ||
eventmachine (1.2.7) | ||
faraday (0.13.1) | ||
multipart-post (>= 1.2, < 3) | ||
faraday-http-cache (2.0.0) | ||
faraday (~> 0.8) | ||
faraday_middleware (0.12.2) | ||
faraday (>= 0.7.4, < 1.0) | ||
fast_gettext (1.1.2) | ||
gettext (3.2.9) | ||
locale (>= 2.0.5) | ||
text (>= 1.3.0) | ||
gettext-setup (0.30) | ||
fast_gettext (~> 1.1.0) | ||
gettext (>= 3.0.2) | ||
locale | ||
github_changelog_generator (1.14.3) | ||
activesupport | ||
faraday-http-cache | ||
multi_json | ||
octokit (~> 4.6) | ||
rainbow (>= 2.1) | ||
rake (>= 10.0) | ||
retriable (~> 2.1) | ||
hashdiff (0.3.8) | ||
hirb (0.7.3) | ||
i18n (0.9.5) | ||
concurrent-ruby (~> 1.0) | ||
jaro_winkler (1.5.1) | ||
json (2.1.0) | ||
locale (2.1.2) | ||
log4r (1.1.10) | ||
mcollective-client (2.12.4) | ||
json | ||
stomp | ||
systemu | ||
method_source (0.9.2) | ||
mini_mime (1.0.1) | ||
mini_portile2 (2.4.0) | ||
minitar (0.7) | ||
minitest (5.11.3) | ||
multi_json (1.13.1) | ||
multipart-post (2.0.0) | ||
mustermann (1.0.3) | ||
nokogiri (1.9.1) | ||
mini_portile2 (~> 2.4.0) | ||
octokit (4.13.0) | ||
sawyer (~> 0.8.0, >= 0.5.3) | ||
parallel (1.12.1) | ||
parser (2.5.3.0) | ||
ast (~> 2.4.0) | ||
powerpack (0.1.2) | ||
pry (0.12.2) | ||
coderay (~> 1.1.0) | ||
method_source (~> 0.9.0) | ||
public_suffix (3.0.3) | ||
puma (3.12.0) | ||
puppet_forge (2.2.9) | ||
faraday (>= 0.9.0, < 0.14.0) | ||
faraday_middleware (>= 0.9.0, < 0.13.0) | ||
gettext-setup (~> 0.11) | ||
minitar | ||
semantic_puppet (~> 1.0) | ||
r10k (3.1.0) | ||
colored (= 1.2) | ||
cri (~> 2.15.1) | ||
gettext-setup (~> 0.24) | ||
log4r (= 1.1.10) | ||
multi_json (~> 1.10) | ||
puppet_forge (~> 2.2.8) | ||
rack (2.0.6) | ||
rack-protection (2.0.5) | ||
rack | ||
rack-test (1.1.0) | ||
rack (>= 1.0, < 3) | ||
rainbow (3.0.0) | ||
rake (12.3.2) | ||
regexp_parser (1.3.0) | ||
require_all (2.0.0) | ||
retriable (2.1.0) | ||
ripl (0.7.1) | ||
bond (~> 0.5.1) | ||
ripl-multi_line (0.3.1) | ||
ripl (>= 0.3.6) | ||
ripl-rack (0.2.0) | ||
rack (>= 1.0) | ||
rack-test (>= 0.5) | ||
ripl (>= 0.3.5) | ||
rocket-chat-notifier (0.1.0) | ||
rspec (3.8.0) | ||
rspec-core (~> 3.8.0) | ||
rspec-expectations (~> 3.8.0) | ||
rspec-mocks (~> 3.8.0) | ||
rspec-core (3.8.0) | ||
rspec-support (~> 3.8.0) | ||
rspec-expectations (3.8.2) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.8.0) | ||
rspec-mocks (3.8.0) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.8.0) | ||
rspec-support (3.8.0) | ||
rubocop (0.61.1) | ||
jaro_winkler (~> 1.5.1) | ||
parallel (~> 1.10) | ||
parser (>= 2.5, != 2.5.1.1) | ||
powerpack (~> 0.1) | ||
rainbow (>= 2.2.2, < 4.0) | ||
ruby-progressbar (~> 1.7) | ||
unicode-display_width (~> 1.4.0) | ||
ruby-debug-ide (0.6.1) | ||
rake (>= 0.8.1) | ||
ruby-progressbar (1.10.0) | ||
safe_yaml (1.0.4) | ||
sawyer (0.8.1) | ||
addressable (>= 2.3.5, < 2.6) | ||
faraday (~> 0.8, < 1.0) | ||
semantic_puppet (1.0.2) | ||
shotgun (0.9.2) | ||
rack (>= 1.0) | ||
simplecov (0.16.1) | ||
docile (~> 1.1) | ||
json (>= 1.8, < 3) | ||
simplecov-html (~> 0.10.0) | ||
simplecov-console (0.4.2) | ||
ansi | ||
hirb | ||
simplecov | ||
simplecov-html (0.10.2) | ||
sinatra (2.0.5) | ||
mustermann (~> 1.0) | ||
rack (~> 2.0) | ||
rack-protection (= 2.0.5) | ||
tilt (~> 2.0) | ||
sinatra-activerecord (2.0.13) | ||
activerecord (>= 3.2) | ||
sinatra (>= 1.0) | ||
sinatra-contrib (2.0.5) | ||
backports (>= 2.8.2) | ||
multi_json | ||
mustermann (~> 1.0) | ||
rack-protection (= 2.0.5) | ||
sinatra (= 2.0.5) | ||
tilt (>= 1.3, < 3) | ||
slack-notifier (2.3.2) | ||
sqlite3 (1.3.13) | ||
stomp (1.4.8) | ||
systemu (2.6.5) | ||
term-ansicolor (1.7.1) | ||
tins (~> 1.0) | ||
text (1.3.1) | ||
thin (1.7.2) | ||
daemons (~> 1.0, >= 1.0.9) | ||
eventmachine (~> 1.0, >= 1.0.4) | ||
rack (>= 1, < 3) | ||
thor (0.19.4) | ||
thread_safe (0.3.6) | ||
tilt (2.0.9) | ||
tins (1.20.2) | ||
tux (0.3.0) | ||
ripl (>= 0.3.5) | ||
ripl-multi_line (>= 0.2.4) | ||
ripl-rack (>= 0.2.0) | ||
sinatra (>= 1.2.1) | ||
tzinfo (1.2.5) | ||
thread_safe (~> 0.1) | ||
unicode-display_width (1.4.1) | ||
webmock (3.5.1) | ||
addressable (>= 2.3.6) | ||
crack (>= 0.3.2) | ||
hashdiff | ||
xpath (3.2.0) | ||
nokogiri (~> 1.8) | ||
yard (0.9.16) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
activerecord (~> 4.2, >= 4.2.6) | ||
bcrypt | ||
capybara | ||
coveralls | ||
database_cleaner! | ||
debase | ||
github_changelog_generator | ||
mcollective-client | ||
pry | ||
puma | ||
r10k | ||
rack-test | ||
rake | ||
require_all | ||
rocket-chat-notifier | ||
rspec | ||
rubocop | ||
ruby-debug-ide | ||
shotgun | ||
simplecov | ||
simplecov-console | ||
sinatra | ||
sinatra-activerecord | ||
sinatra-contrib | ||
slack-notifier | ||
sqlite3 | ||
thin | ||
tux | ||
webmock | ||
yard | ||
|
||
BUNDLED WITH | ||
1.17.1 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure, do we want to comit the Gemfile? We have it in the .gitignore for our modules.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For web applications like Sinatra and Rails it is considered best practice to include the
Gemfile.lock
. In fact, the only time you're not supposed to include the Gemfile.lock is for Puppet modules and Rubygems.