-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This includes TermsController and spec tests, making it functionaly equivilant to LcshSuggest.
- Loading branch information
Showing
60 changed files
with
818 additions
and
282 deletions.
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 |
---|---|---|
@@ -1,5 +1,16 @@ | ||
.bundle/ | ||
log/*.log | ||
pkg/ | ||
Gemfile.lock | ||
.rspec | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
# | ||
# If you find yourself ignoring temporary files generated by your text editor | ||
# or operating system, you probably want to add a global ignore instead: | ||
# git config --global core.excludesfile '~/.gitignore_global' | ||
|
||
# Ignore bundler config. | ||
/.bundle | ||
|
||
# Ignore the default SQLite database. | ||
/db/*.sqlite3 | ||
/db/*.sqlite3-journal | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/*.log | ||
/tmp |
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 @@ | ||
--color |
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,14 +1,41 @@ | ||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
# Declare your gem's dependencies in questioning_authority.gemspec. | ||
# Bundler will treat runtime dependencies like base dependencies, and | ||
# development dependencies will be added by default to the :development group. | ||
gemspec | ||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
gem 'rails', '4.0.0' | ||
|
||
# Declare any dependencies that are still in development here instead of in | ||
# your gemspec. These might include edge Rails or gems from your path or | ||
# Git. Remember to move these dependencies to your gemspec before releasing | ||
# your gem to rubygems.org. | ||
# Use sqlite3 as the database for Active Record | ||
gem 'sqlite3' | ||
|
||
# To use debugger | ||
# gem 'debugger' | ||
# Use SCSS for stylesheets | ||
gem 'sass-rails', '~> 4.0.0' | ||
|
||
# Use Uglifier as compressor for JavaScript assets | ||
gem 'uglifier', '>= 1.3.0' | ||
|
||
# Use CoffeeScript for .js.coffee assets and views | ||
gem 'coffee-rails', '~> 4.0.0' | ||
|
||
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | ||
# gem 'therubyracer', platforms: :ruby | ||
|
||
# Use jquery as the JavaScript library | ||
gem 'jquery-rails' | ||
|
||
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks | ||
gem 'turbolinks' | ||
|
||
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | ||
gem 'jbuilder', '~> 1.2' | ||
|
||
group :doc do | ||
# bundle exec rake doc:rails generates the API under doc/api. | ||
gem 'sdoc', require: false | ||
end | ||
|
||
gem 'curb' | ||
|
||
group :development, :test do | ||
gem 'rspec' | ||
gem 'rspec-rails' | ||
gem 'debugger' | ||
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,147 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
actionmailer (4.0.0) | ||
actionpack (= 4.0.0) | ||
mail (~> 2.5.3) | ||
actionpack (4.0.0) | ||
activesupport (= 4.0.0) | ||
builder (~> 3.1.0) | ||
erubis (~> 2.7.0) | ||
rack (~> 1.5.2) | ||
rack-test (~> 0.6.2) | ||
activemodel (4.0.0) | ||
activesupport (= 4.0.0) | ||
builder (~> 3.1.0) | ||
activerecord (4.0.0) | ||
activemodel (= 4.0.0) | ||
activerecord-deprecated_finders (~> 1.0.2) | ||
activesupport (= 4.0.0) | ||
arel (~> 4.0.0) | ||
activerecord-deprecated_finders (1.0.3) | ||
activesupport (4.0.0) | ||
i18n (~> 0.6, >= 0.6.4) | ||
minitest (~> 4.2) | ||
multi_json (~> 1.3) | ||
thread_safe (~> 0.1) | ||
tzinfo (~> 0.3.37) | ||
arel (4.0.0) | ||
atomic (1.1.14) | ||
builder (3.1.4) | ||
coffee-rails (4.0.0) | ||
coffee-script (>= 2.2.0) | ||
railties (>= 4.0.0.beta, < 5.0) | ||
coffee-script (2.2.0) | ||
coffee-script-source | ||
execjs | ||
coffee-script-source (1.6.3) | ||
columnize (0.3.6) | ||
curb (0.8.4) | ||
debugger (1.6.1) | ||
columnize (>= 0.3.1) | ||
debugger-linecache (~> 1.2.0) | ||
debugger-ruby_core_source (~> 1.2.3) | ||
debugger-linecache (1.2.0) | ||
debugger-ruby_core_source (1.2.3) | ||
diff-lcs (1.2.4) | ||
erubis (2.7.0) | ||
execjs (2.0.1) | ||
hike (1.2.3) | ||
i18n (0.6.5) | ||
jbuilder (1.5.1) | ||
activesupport (>= 3.0.0) | ||
multi_json (>= 1.2.0) | ||
jquery-rails (3.0.4) | ||
railties (>= 3.0, < 5.0) | ||
thor (>= 0.14, < 2.0) | ||
json (1.8.0) | ||
mail (2.5.4) | ||
mime-types (~> 1.16) | ||
treetop (~> 1.4.8) | ||
mime-types (1.25) | ||
minitest (4.7.5) | ||
multi_json (1.8.0) | ||
polyglot (0.3.3) | ||
rack (1.5.2) | ||
rack-test (0.6.2) | ||
rack (>= 1.0) | ||
rails (4.0.0) | ||
actionmailer (= 4.0.0) | ||
actionpack (= 4.0.0) | ||
activerecord (= 4.0.0) | ||
activesupport (= 4.0.0) | ||
bundler (>= 1.3.0, < 2.0) | ||
railties (= 4.0.0) | ||
sprockets-rails (~> 2.0.0) | ||
railties (4.0.0) | ||
actionpack (= 4.0.0) | ||
activesupport (= 4.0.0) | ||
rake (>= 0.8.7) | ||
thor (>= 0.18.1, < 2.0) | ||
rake (10.1.0) | ||
rdoc (3.12.2) | ||
json (~> 1.4) | ||
rspec (2.14.1) | ||
rspec-core (~> 2.14.0) | ||
rspec-expectations (~> 2.14.0) | ||
rspec-mocks (~> 2.14.0) | ||
rspec-core (2.14.5) | ||
rspec-expectations (2.14.2) | ||
diff-lcs (>= 1.1.3, < 2.0) | ||
rspec-mocks (2.14.3) | ||
rspec-rails (2.14.0) | ||
actionpack (>= 3.0) | ||
activesupport (>= 3.0) | ||
railties (>= 3.0) | ||
rspec-core (~> 2.14.0) | ||
rspec-expectations (~> 2.14.0) | ||
rspec-mocks (~> 2.14.0) | ||
sass (3.2.10) | ||
sass-rails (4.0.0) | ||
railties (>= 4.0.0.beta, < 5.0) | ||
sass (>= 3.1.10) | ||
sprockets-rails (~> 2.0.0) | ||
sdoc (0.3.20) | ||
json (>= 1.1.3) | ||
rdoc (~> 3.10) | ||
sprockets (2.10.0) | ||
hike (~> 1.2) | ||
multi_json (~> 1.0) | ||
rack (~> 1.0) | ||
tilt (~> 1.1, != 1.3.0) | ||
sprockets-rails (2.0.0) | ||
actionpack (>= 3.0) | ||
activesupport (>= 3.0) | ||
sprockets (~> 2.8) | ||
sqlite3 (1.3.8) | ||
thor (0.18.1) | ||
thread_safe (0.1.3) | ||
atomic | ||
tilt (1.4.1) | ||
treetop (1.4.15) | ||
polyglot | ||
polyglot (>= 0.3.1) | ||
turbolinks (1.3.0) | ||
coffee-rails | ||
tzinfo (0.3.37) | ||
uglifier (2.2.1) | ||
execjs (>= 0.3.0) | ||
multi_json (~> 1.0, >= 1.0.2) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
coffee-rails (~> 4.0.0) | ||
curb | ||
debugger | ||
jbuilder (~> 1.2) | ||
jquery-rails | ||
rails (= 4.0.0) | ||
rspec | ||
rspec-rails | ||
sass-rails (~> 4.0.0) | ||
sdoc | ||
sqlite3 | ||
turbolinks | ||
uglifier (>= 1.3.0) |
Oops, something went wrong.