From d513589b815f82a395c89ec6216c0d6a09530603 Mon Sep 17 00:00:00 2001 From: yitznewton Date: Sun, 21 Jun 2015 18:31:53 -0400 Subject: [PATCH] Create app --- .gitignore | 17 + Gemfile | 29 + Gemfile.lock | 169 +++++ LICENSE | 674 ++++++++++++++++++ README.md | 21 + Rakefile | 6 + app/assets/images/.keep | 0 app/assets/images/woofr.png | Bin 0 -> 20403 bytes app/assets/javascripts/application.js | 16 + app/assets/stylesheets/application.sass | 41 ++ app/controllers/application_controller.rb | 5 + app/controllers/barks_controller.rb | 5 + app/controllers/concerns/.keep | 0 app/helpers/application_helper.rb | 2 + app/mailers/.keep | 0 app/models/.keep | 0 app/models/bark.rb | 3 + app/models/concerns/.keep | 0 app/models/user.rb | 2 + app/views/barks/index.html.erb | 11 + app/views/layouts/application.html.erb | 18 + bin/bundle | 3 + bin/rails | 8 + bin/rake | 8 + bin/setup | 29 + bin/spring | 15 + config.ru | 4 + config/application.rb | 26 + config/boot.rb | 3 + config/database.yml | 25 + config/environment.rb | 5 + config/environments/development.rb | 41 ++ config/environments/production.rb | 79 ++ config/environments/test.rb | 42 ++ config/initializers/assets.rb | 11 + config/initializers/backtrace_silencers.rb | 7 + config/initializers/cookies_serializer.rb | 3 + .../initializers/filter_parameter_logging.rb | 4 + config/initializers/inflections.rb | 16 + config/initializers/mime_types.rb | 4 + config/initializers/session_store.rb | 3 + config/initializers/wrap_parameters.rb | 14 + config/locales/en.yml | 23 + config/routes.rb | 52 ++ config/secrets.yml | 22 + db/migrate/20150621222636_create_users.rb | 9 + db/migrate/20150621222734_create_barks.rb | 11 + db/schema.rb | 32 + db/seeds.rb | 13 + lib/assets/.keep | 0 lib/tasks/.keep | 0 log/.keep | 0 public/404.html | 67 ++ public/422.html | 67 ++ public/500.html | 66 ++ public/favicon.ico | 0 public/robots.txt | 5 + spec/models/bark_spec.rb | 5 + spec/models/user_spec.rb | 5 + 59 files changed, 1746 insertions(+) create mode 100644 .gitignore create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 LICENSE create mode 100644 README.md create mode 100644 Rakefile create mode 100644 app/assets/images/.keep create mode 100644 app/assets/images/woofr.png create mode 100644 app/assets/javascripts/application.js create mode 100644 app/assets/stylesheets/application.sass create mode 100644 app/controllers/application_controller.rb create mode 100644 app/controllers/barks_controller.rb create mode 100644 app/controllers/concerns/.keep create mode 100644 app/helpers/application_helper.rb create mode 100644 app/mailers/.keep create mode 100644 app/models/.keep create mode 100644 app/models/bark.rb create mode 100644 app/models/concerns/.keep create mode 100644 app/models/user.rb create mode 100644 app/views/barks/index.html.erb create mode 100644 app/views/layouts/application.html.erb create mode 100755 bin/bundle create mode 100755 bin/rails create mode 100755 bin/rake create mode 100755 bin/setup create mode 100755 bin/spring create mode 100644 config.ru create mode 100644 config/application.rb create mode 100644 config/boot.rb create mode 100644 config/database.yml create mode 100644 config/environment.rb create mode 100644 config/environments/development.rb create mode 100644 config/environments/production.rb create mode 100644 config/environments/test.rb create mode 100644 config/initializers/assets.rb create mode 100644 config/initializers/backtrace_silencers.rb create mode 100644 config/initializers/cookies_serializer.rb create mode 100644 config/initializers/filter_parameter_logging.rb create mode 100644 config/initializers/inflections.rb create mode 100644 config/initializers/mime_types.rb create mode 100644 config/initializers/session_store.rb create mode 100644 config/initializers/wrap_parameters.rb create mode 100644 config/locales/en.yml create mode 100644 config/routes.rb create mode 100644 config/secrets.yml create mode 100644 db/migrate/20150621222636_create_users.rb create mode 100644 db/migrate/20150621222734_create_barks.rb create mode 100644 db/schema.rb create mode 100644 db/seeds.rb create mode 100644 lib/assets/.keep create mode 100644 lib/tasks/.keep create mode 100644 log/.keep create mode 100644 public/404.html create mode 100644 public/422.html create mode 100644 public/500.html create mode 100644 public/favicon.ico create mode 100644 public/robots.txt create mode 100644 spec/models/bark_spec.rb create mode 100644 spec/models/user_spec.rb diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..050c9d9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# See https://help.github.com/articles/ignoring-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/.keep +/tmp diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..1c4d67a --- /dev/null +++ b/Gemfile @@ -0,0 +1,29 @@ +source 'https://rubygems.org' + +gem 'rails', '4.2.2' +gem 'sqlite3' +gem 'sass-rails', '~> 5.0' +gem 'uglifier', '>= 1.3.0' + +# See https://github.com/rails/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' + +group :development, :test do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + gem 'byebug' + + # Access an IRB console on exception pages or by using <%= console %> in views + gem 'web-console', '~> 2.0' + + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' + + gem 'rspec-rails' + gem 'faker' +end + diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..ed119e6 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,169 @@ +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.2.2) + actionpack (= 4.2.2) + actionview (= 4.2.2) + activejob (= 4.2.2) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 1.0, >= 1.0.5) + actionpack (4.2.2) + actionview (= 4.2.2) + activesupport (= 4.2.2) + rack (~> 1.6) + rack-test (~> 0.6.2) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.1) + actionview (4.2.2) + activesupport (= 4.2.2) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.1) + activejob (4.2.2) + activesupport (= 4.2.2) + globalid (>= 0.3.0) + activemodel (4.2.2) + activesupport (= 4.2.2) + builder (~> 3.1) + activerecord (4.2.2) + activemodel (= 4.2.2) + activesupport (= 4.2.2) + arel (~> 6.0) + activesupport (4.2.2) + i18n (~> 0.7) + json (~> 1.7, >= 1.7.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + arel (6.0.0) + binding_of_caller (0.7.2) + debug_inspector (>= 0.0.1) + builder (3.2.2) + byebug (5.0.0) + columnize (= 0.9.0) + coffee-rails (4.1.0) + coffee-script (>= 2.2.0) + railties (>= 4.0.0, < 5.0) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.9.1.1) + columnize (0.9.0) + debug_inspector (0.0.2) + diff-lcs (1.2.5) + erubis (2.7.0) + execjs (2.5.2) + faker (1.4.3) + i18n (~> 0.5) + globalid (0.3.5) + activesupport (>= 4.1.0) + i18n (0.7.0) + jquery-rails (4.0.4) + rails-dom-testing (~> 1.0) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + json (1.8.3) + loofah (2.0.2) + nokogiri (>= 1.5.9) + mail (2.6.3) + mime-types (>= 1.16, < 3) + mime-types (2.6.1) + mini_portile (0.6.2) + minitest (5.7.0) + nokogiri (1.6.6.2) + mini_portile (~> 0.6.0) + rack (1.6.4) + rack-test (0.6.3) + rack (>= 1.0) + rails (4.2.2) + actionmailer (= 4.2.2) + actionpack (= 4.2.2) + actionview (= 4.2.2) + activejob (= 4.2.2) + activemodel (= 4.2.2) + activerecord (= 4.2.2) + activesupport (= 4.2.2) + bundler (>= 1.3.0, < 2.0) + railties (= 4.2.2) + sprockets-rails + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.6) + activesupport (>= 4.2.0.beta, < 5.0) + nokogiri (~> 1.6.0) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.0.2) + loofah (~> 2.0) + railties (4.2.2) + actionpack (= 4.2.2) + activesupport (= 4.2.2) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (10.4.2) + rspec-core (3.3.1) + rspec-support (~> 3.3.0) + rspec-expectations (3.3.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.3.0) + rspec-mocks (3.3.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.3.0) + rspec-rails (3.3.2) + actionpack (>= 3.0, < 4.3) + activesupport (>= 3.0, < 4.3) + railties (>= 3.0, < 4.3) + rspec-core (~> 3.3.0) + rspec-expectations (~> 3.3.0) + rspec-mocks (~> 3.3.0) + rspec-support (~> 3.3.0) + rspec-support (3.3.0) + sass (3.4.14) + sass-rails (5.0.3) + railties (>= 4.0.0, < 5.0) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (~> 1.1) + spring (1.3.6) + sprockets (3.2.0) + rack (~> 1.0) + sprockets-rails (2.3.1) + actionpack (>= 3.0) + activesupport (>= 3.0) + sprockets (>= 2.8, < 4.0) + sqlite3 (1.3.10) + thor (0.19.1) + thread_safe (0.3.5) + tilt (1.4.1) + turbolinks (2.5.3) + coffee-rails + tzinfo (1.2.2) + thread_safe (~> 0.1) + uglifier (2.7.1) + execjs (>= 0.3.0) + json (>= 1.8.0) + web-console (2.1.3) + activemodel (>= 4.0) + binding_of_caller (>= 0.7.2) + railties (>= 4.0) + sprockets-rails (>= 2.0, < 4.0) + +PLATFORMS + ruby + +DEPENDENCIES + byebug + faker + jquery-rails + rails (= 4.2.2) + rspec-rails + sass-rails (~> 5.0) + spring + sqlite3 + turbolinks + uglifier (>= 1.3.0) + web-console (~> 2.0) + +BUNDLED WITH + 1.10.4 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..5f1c901 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# Woofr + +This project is for demonstrating time localization with Rails using +Moment.js. + +## Installation + +```shell +$ bundle install +$ rails db:migrate db:seed +``` + +## Startup + +```shell +$ rails server +``` + +## License + +[GPLv3](LICENSE) diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..ba6b733 --- /dev/null +++ b/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require File.expand_path('../config/application', __FILE__) + +Rails.application.load_tasks diff --git a/app/assets/images/.keep b/app/assets/images/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/assets/images/woofr.png b/app/assets/images/woofr.png new file mode 100644 index 0000000000000000000000000000000000000000..0c2cd2d13b6700cfd8b5d24936f1d818b98a15f1 GIT binary patch literal 20403 zcmce6b980Tv+v1?jfrjBwr$(C?M#x1C)UJHCZ5=u*tTu!<@@{Hckg}czW49jYn^p^ z@2XFCb#?FRs@fH)C@%pIgAD@!0N|x0MU}t)uK)lLLMVu@Rut|BGynjHW+ft`C?z67 zsOaoqZe?o*07ynAYd~tMjG*V}C__QhA%RfkaR_-QZ}80Yh)V)PQG^LgmlDLl7lWgq z)Lqp?2O0r&OTP_;z|P!+M8&i)VA)kSNI~wNH~cSs4qp#81S}@FZgX8M$XNixt94+( zvZ^3~wEj7aGn>&^x$(oK@6bquu$0}O%OU3c_;36SpjWuOs0AQYi=F*BP2Y1adZ29`(&@ZFS2KG_(aNj}9`CQ{C| zkfWa;5MM@{!iWaoa`H9j=Rq4x_$FvOa(MNGKo9^7CvC3bcOyEba7vOv7gU}4P!t2p zxbW*6V1a~F9V3r3D}To1_{J1`)wGjx&QXi6 zzAa|IGm^)ixhQztiU76bEdowGauo4E);*DbD)C+P&lSURtrin6BXrx8&=Bf=d@rkM z5M=|}oJ<@7=E0c0`|D)qZcbhQF-i-#3Hq90rA=cY^Zru4rsT|H0;(z&cS;Tc>#=4U zM0rLlyx&8|mA{~<0?s-J8Hlz2!Vd{ST|w{%LW}+;3$cwy@H_{F2fa#d7()CVh*Suq zXC#>a;ngqY{d9!|4%2Obo{c_IW}%c7SYto?J&?~#<3%oPRyn>|V^w1*Jm z*?w=<0NnF#`am#6B4t6B#WhTr0FyUe>@SQbY& z!`RhcSzafPv`oCYk6}gDi5(xh0DOh9%OPBed*@dCO`wmV-6+rAq~$nD9591E+eS;t+Q`uG0Qz6sTwgs$TQPSuEL0?xpkH|BvU z{8Q2Zud^zm22j>iZEP6rACn<0P@%+P>5=~8jML%M`Ey zN-s?P*Zh%x13q7fzK}!y`jLz)6lfalV7Duy%NX+QU~jD`E%-NM*jkiI+=@X2W4S9G zgQ3=1kh5>{{l}c&I3jLY0C7Fbo(P>t29X*&KG)uFxc+#TJ&@N9VAw(-hT@LoU?@A# zWueQV#==}i9NU=Nyt+z$p^u`(2|}#I+}(}og0d77B-Nz$L<`6Y-*_TB`iW2?3&oj9 zS`vGuXqEBH(i$Qga$Te5#7;>3NJkSJM;1&4oQcyF=t)zP9upK2+lD8H`_e^6Hcw3OyHgDwhoj(5(v3A|DNx-=G~+{-g$&OQls+$~oM))kO8g) zRqK}f3byEZDT+xAsFSIi#Y!jtg-*7I7-TdBV`j#xz>2_X#>}O#l)uXA&i-xO+XJol zjlWc0^p+V3l_b{uv&58mf0 zD-3DWvI^$p^}$}TT%`qh-+qzIEa%NuvsBs?;uPqV>Xf`H#^oQDrsg;6*N8bN8t4e9 z26XyYeei)|fl7q1hQvTrK@h;j!0p1NVzFcLb11XHuu?OYvw0iJvbb|hFjcd68VR#H zv5qh<8_yU;WvrwZr>m#yvxtnJjeDBwjB!&SlXJ=KD3s^8u4Y+ZSmikA+iaNh{D!Kf zY_R<8$)*+HytCJsq(c!<-%vl+ux949DLq0xTs~DkauU;6#qn|q1={XyvS7WFPEOVttf=v6Lkx8zjGw$IUq4vFmH-Ja(UrF4@d5 zVl|ogA;U6nVLrjjB;${6vyeb4tgJiJS;$c7sLp0X$;Ig9aznV9*^%&`xZ9&Od3@OF zJo;x+Sy$z+a!yHWakb33f{Ox;0?wA#Ewxw8Ea*&gQNS?Ni~S?5JmGwRPuSqdyrM2b>3bcUDJrQ|xqN84l?j42$=#!Jl?=*dDM*& zksIfa@vE?z)>g9n{5XE)L3qNoB8f9!XFEFA0~2 zl}F5y;+tJ%uGs%reyZn~kmFnQ=YM(|fc3|iX!35#X+83;eNMbB+D*k{;Lxq@Qri`n1p&LOUA6=E0iRUg(Mu3hU{ z{ro(~qv=vRoH!i6W71pTEpM-2WvC+;SD?{9_Vvxy^8sTfHL8Z(AhQ!Zz=tuBjhWaG zS}U;t0D+T{2<*<}15BZ8ErV?AQaaDPrivmRXDbDF3m6^a$q_#Q&aMH3=1c&hs~>e} z?4aMvuITvvC42yLgXZlq()Lj?jjZTs8^%xs65<=yKtXHZR)wRfspshM@SMDN@}?P0O(}@{6M6XNxwn}Aefb^ zrmLo$EVqe+9lepMgRvRCr=8;$Hvquv$^F%|GjlZ}^t7|Jcj5NrBmNf$_gDL$#|*@T z|6*~q;Um_RQzR5|a5f`kqi3aOB<6=9BqZc@HZ|u~78U;w_}3jDv8Ai4BR2zshldBf z2MfJ}vjqba7Z(=;BQpatGu;;lor{;ftC1(2y$i{|JNe)Jh?=>WI9oZoS~=Jg{?o6K zv4fi{A2IPi1O4aqZ#m68t^R8ydzb&1*4G3X{-H21(K9mq-(ap*=Kl}aKa_vN{xz?E z5BFtRtjxI;tvt6xu!ZWFW}!K5Eel_Q&@pYqe+R5B#JBp(6QD0EjD18FEw?v*+rhlk+Ikw zELuQ`jm!q4{yP{3SQ|(P(=YtZig=%D)g$0=&Fpcx!{g%O+~;yVee%%jVdL1vywk&c zB8zJ%NgNVwXJ?Zkp$u~Z?u zqi`Tm4t(KmH8mHT>b(cZzrTU@r@prlb0=}sr2}gbbHGk~nt2vM|5#n%**tgM2ZMFul69fCt}<1gY7I3Ca(k`Q2~l!#;Co4FQ2IC(!A>`zHH@IxrK25Yye0YjbssRTG! ztV`=@@OU)Sm`+J9Xn`cR_>L-@S50YxAk8tzivZ4>kG{91;ZTsvR@!S#DNGuAt27#b zEOX6t(PUepj3>)jF(3x58JDI7*qs1A`z6hC!G_rLY%K~NTWb#&emCjq-?*4HM${@h z&=@R^VJRN`?&+}Es&g;>3>(U=@Y-EVK+*}S|LQQCXI(o{Z*5}V{3R!PcYo-XwKFZj zZ8Z&J-4&ArOT(M|IkIwk@BH4;X@_emgl{&&gxOA6dEaAa%j4ccV|?t~;l?phqXkYk zKF0b@{;D)*O1b!k?v#8F0iUk6_-Sit0N_i8PHXZb1NluP`D zcagh8&|VG!VN6#UpAKQ|hsqGJeW1!Au=!l5)yminA{NYXw-Se_<-w%FYQOSEn*b`P zv#)0}ppeK=ZPpX$Zu}kqCOEX{d-OdyvE~w5(PxCjI>RdZPb?^7?MI6n_;alYi=E>z z7}SG+8h_#dkrSAU?FdWL=MndGdB`q6SHO-}V`>6Gcy3W4t_zu$m&zi1zMZ_*3XyTJ z27PSzp!)mrcnbE!KEnjjn5r_Y;LlVcc9@Pv`~z)J^FTjV69mKj%3>M8+&U-Z8|Xwl zdoKjPe8b5WCcuS_>kK&uoFS->s@nYRT~Nl4hr2|}%@Ho}OR5LQ60`cG?o2x|$D`1* zf-3*)V*epzz`+8V=^&?b#(Dc;a#`cn`Oq$H8@F=TE@}lrEWnY>a%qt{4fH+SM#?;z z)z#nD;_xSvg%4o17CF_!9MLVHE8z?P`9!`LV0@}QljhQEN45&Obe?g4|HIh8=1>Yj z$!9jf4@u{`HRsD|U4S;3T&SCpS4$Gf+TIGR2cx2NP#eWfikuMo#(686I>9WOv$R?q zO$NGrB%Gn2V=MU@Q=LlM^{$R5Orc8zT^Ai;2hMf0WVyL1&La%Ru$VrqTF$-i4TXT4 zdzv&Kr$(ClgC!fUcht9_X-A{sMiflXBt>V;= zElfF_xe@K6Uq_y_t)@-Ih-&w0aa#0;W7vB|Z%}^;?dnY+u))#8i+8V#KTEQ7YpBR2je4F?F-Xo>WX-Q6|AqAk5YF3979$np_!W#bz)wBYdWc`f?XP>-VHLhzhv8}0r z1L2Mb4LkR>k+vjb&)w?z#IEXsGm;-cej&$*Oc3Vpio<-5{E3Gx$*_^fDGZo?Yn{cu znAi5pIy?hfhd;*WOGhwM@m^RcWoY`mTx-=&*0n%R(=UkgOcTiO^(vY<-5W)D!oEPK zU!1Vq0i@zsbgRcC#P0q3YNzd0Jmqq|yO$+`UtTNg>Qo;(fIMA=M@NJ33NsH(UZEz* z5vmHni|2!8DzZXniB&b2;LLN;pwca`j%N$9HQe51T~a(kRb{A2We21y)6r#9sVgK0 zcec(-Dr}x>82$Ulz4k=W9gyS(-c~-6=b}z#oS=??yO7A;^oFLUc6D&D^QRQOLiw;C>5&<6h}d17tqegFLn72n(8FAj&Yc8%Aou2 zG~oJ8rGN75QVL4s^)9i~%ZPDleW^rSgD|#!eZm{VAbcDSh&d?Q_%TbAuF^422B=U1SY_pbuZ1rq`4Ik=-#r4?j7XiYc zKvnFZr{(Z|3Ks05zDhD(LuRp$Hn&EiV8}N?SqYtfyhpdQXo3aq?VNf@x0wBk12n`o z`iKAsf=yqh{%<=-`>rO)@9_LJX&jQbD$c_B*Iw=6GGadu*kQ{kwXj za4Riiy_abX%?wKO99)K6!J)^N-RyQmjeH;h`}tf_OnehlN_e;=wzlf=s`ZqTRX6aS zr}(s=_!OoICB2_db#!w@rbfwqj%}h<3CYnZqxZq~ee@Y;xdr?{mk0adEc&E+u(VHj zDlb{VgTH56BWU@=Lv~;I%hHz-)+SY8J9T82CsoMUj{9&Ovnn%;W^==+HeLdEKcCU( zR8JvuS`+t8W|t`7(vD@p9iPUj%2Q3u*;A@F5>VXQxU{(=3_5u<=qNBh{;DmABZBQ1 z@ZaM%*kjG8RoIDfE?6@cn~?PercbZ}R;OEqEr-d>XOvwwOc}m&^BgKJ>)H-vt>95TKp0I-I)=!oAlDQ*@PsogH)hm`mN-+Qj$O;bP^KO#k0FF&4*7Gm>^K`DJDmGN~7Ur?vCx(`CQjL-z9Bdl* zH~gkyo1;3gNSve6<{NL`*0t^Nxj6#$RDvuwTnc`08hl+y5V=m&u18DZc+-NLV|HXF zRos|OG`|ZnvS`oG9li9<$1@oztX)`?gT#IrG zgI6Gc4q=m1*e${7(kBy3TWVd5o^E@opq_i}ujGrHRqEoe8DN38;@a`o^h;J^0{=0e ziVJoJ{lpNeeLtX)3|{i9ftC8=HEVz1`L)}Go>pg3r`0@4$mH!=K96GOE-}sKg&t8d zGC>UgBo_XyhN^Y&A|{p8FLl4H7=BUs#|mS>?MV z7Z{sUVEPvW^2yTkSy^`xT2BeC7F%G+wu<03v^ybUpUyvfS)wb83iAKr;8N9oxP-Wv zT1ddrk;Epug8Z}Y{iGzu18Uk=-wyNkvgygD5?g)-h9|c7J1LV(nIU^les&#hRR;NO zJ=FFYNp9xsuJ!sSSM&y5mfmEt@xS2v+zyVg=xgm-&$!&rI9!4`om@LU zQe%uMNQla?Fyv;h%WQXH!dBE9|6?KZ==u15&ib8Bba(ZcBPvQwTtw44?wVz@&w(MR zEHzgRpkKaHI2$h5WuKka_;y{gesywqz~Y@2mU)I{a2qs2CRx8|GcUvvcy6vIB#m8$ zNM{!VWXe88aU_{sH$T$X&^~?VC#OAMcz^olnrbAQ?I&xnT;3k;W8BPDkvjQ&Hyc7G zCv$W(#A0WmN0duAkOSR+&2}kb*&kEhs62zu(d3IDt=eG^ZyC)dYOxey!!Ec!X+ ztmUxMQlg4F6qb6w12rNQ!29jXQ_Rb-F9*qLvAa{yA;3w_2hx@FDdpgxKFj3z~n*v6f`# z3Ec^QWuF>02wfCBxTG&`DZe7Lh&3n{8)X z^!5_3V&Bkavj$aKWuMYbogA=PjkkR;8<7%q@ZFL7k&fd~D@D<>lGIS1UD!oX3b3j! zC+~toy)&{|o4b8pxGEN>$0D!P3AW*J`R6ZNy~8Z7+nThzi0z_Tcu+%~ zpL*}Lx|@v3$#b;HOV5svL!kV*_UJ*txmAcBxW2LO@_S)W%7b(zH!7RG_|3$2Np@Px@DO&@cFGaz(~7Uk+_p_2`%%Rm<E+ITI@7ab`F0CD7T>>Dxk^3f#ac5HLwj zaF2|5K}WxPbI~Ct61%R1lH$_j6@B9x0{g93MKjFSJN{vQ5wI@H;k5ewR91sO`-m8p zAgS@B`(Jd-Uf_&WO z-Hqvx!ROEV6T+{P?rCd+A9ZVt#?MdaRe#2N+m!;BhUvE!;2)Fg=nZLECXg<=FV6!m zxt^f%*ioroKX-`=Sdxsnu7q(Ea6=^&16{K!05DbcGHh1S)yAkqGG%}=Hdh;V>BC;t z8^~oRnrSaz=LZ)6P3_ z<|EJm_oR$0V|Wi`&0m|26l#m?Ze(AM;(pdWO0+tE{!wbK2m6$Tg1*BYI>-E|Aq?hi!SMkAudJZe3 zhITV#K?350$Wyms&!F2AxE@;zn5cDx(#XzWbdSCQJwm)n^>pw!dkFBOhlFN143;`~ zwVY%){a$LLlq`TD^PwW!4!4HeZxtMoV*Nif@^`zW~w(&)irwesyqkOhvX5Kqv7x1km9oPf% z*Oir{r1S>`$_yb*V)EH{r-9yLum#w= z+5}EnpkWjewl}zdI*Q8Qy+^@Mqc4rLpK*CUK5C6V0LiuZhQS!|Xpk#1cupy|E{BS0 z>gLcdZYNr6nFmPfMTcLju$}xamMAB6JWYXV!r#@-&;1KI`2#qDfNwX#EK2o{UhBVx z%3IV{a-l+=hs1ZXOhIIkMM&(Ch7K>u6$2S^SwzQ!7tbHP=Hc>`F==58jkR9mu&auB z@ijofpKh=MT{Y(goO4bYb}O*(L;0@1WcE`6sO*&^b2x>kq*+6BX|$eb0v-B(L{_VZ z6u1vV4T)Q%uv==NbbsZ|Xl*aX@&t=2Vq$Y=yKAzsvOSPDsSu9@5|( zry8L6M@2&8`21xl5fhJn5nV2q=khM$X=V*M#c9c&23ugu3m%y%9bQRd$|P=k(GX}^ z!%Q!t61-tKOxfo4kaQ7Gk>(F+O@0ee5{fGs=m7{|*t8ujh!=NRI!f*@55l9?O_&dp9dujZX?5BPSPS+S|K0dKFz?{Y;=0E)`8*&5vXGpyDP zG_8&#nP9D4gvdzC;ftI!aS+9NIdWnO?r(ew1Cux`&IH!|vrW^a-8K>pcWZE;Wu3a* zHGAATq9H+(39h>z=1?7PuPqUEvBmCLHuaijT|3w}u3qG4>4;H@=_@vb;oltAAr~$y z_B<)4Y;+|qcl-TEx$|Y9T)jPAfEcc7$dC40x$uQ0MS#ma&yC+M`GA}2!YZc?%3>kW z=K2^C*D1`{Fbp3&IAb!^@4=RrY~W3s+@;IxXwtKmgAgK(Cy|#0XlzVB85Y9Um|fB7 zz`p8TTjm{q5<7ggtKPdK{g*r7XFpB_2gztQUd7G&EiGrQ&X>FxZLwHssabkM`pXn1 zM(Eg#|>T0qNA~mr+T7wVt}r@)?0gxvQ<4dmb{Iwc(#)ai?ak!dgJPLz-a+6pM3Cmy1{)6?q>SG&MB%9*of> z?{SQ@2LIJY6>UZf%r^hRp+i33v;ZKZ^d;pGVw8BebU@Oec1bG`&Z_b|bIU^$n9z9lpx$TPi*M)qZ{J#qZO!2C_h@_t^6)?yZ3^!AYSL@gO;4im5?l zkH1ugO>W@(Yzc#3EM*z)%_m!P(XgVc{Vxi~5j^0izf4H#t7s@o!);MlfoW;r?oIz< zU`0vPSsX!t!dH|8p{b-nO)0$?ZvqsXFU^;SBu)AspL`{Q9#6!jiUym8TZ8d$RbEENzoJCV@=#TEw zGr(Nqf|tMtI4WBZc&;>tFjaAu)|(cX6r?nF*zqKc*uM97#ij+7&3r{JH=1rwM-iB~ z&oz{xh&YFqSLQqc%W?RgZ-+UKDlc$pD@zQg;{gdkcg3WFViH_XLu*y8O769W4?@gW zCmzcmK89y$O4gP(ZGQ;-f8ZXupXbegS5kDlyGDYY3*J;B>DEp3=DtHUy&k6_P)v0M~=Nx893Z3d|ot*x2P)t+f@55W}%1}j}E=bbZ`}HZeb&5|< zCjg2EB{l*ujR|01CBMp+-Lwyay6v~QE#m*`YSyR>gWL+y)dxGffHDWVK0Z{rd^jV5 zDLdl?{N1By$9!{8308+q<^t7-`Lj{GRb;fK2~gRWdY88ysEA+r6QvLD#=w5h%GzaX zu4TwTGaJ)60of2l5U`S66?@gD1#k?~5Nlr=_?}FHdt3`Opox8BMBE>~p zc6YHnOK&em3gYwqCddj2&{}LQhQaUh)_p)zkLFiz0bmF$eHj~k=C6;HbDjlN++&Cy z=$6u>;}q3G*HXAwdq#>Q$v0WI=2) zx_B#$*0*}8GpPPbze3I&wM*8v4c8T{?YipjS(6?$8@dw!aBQ+{{u3$bk+=rwX-u`!B!6&0NtJ@ z@8E6tY!!`FhyQQ8C5ubMpGFMHN&sAXK1Ti?rlpr4$Q=UH}T5+P-Y#$j~UKWiDUUcHm&g# z&(jf7W04bsZm%_XYOKe3Ej9pIQNnv3Ce^U~L(Sv$VtepAUl6lMD+nH-1p`V3Qpk5= zgYcc7#u9Zi#(;00n=gII@!-pPyW-v8pBy+T)p`c;S?201HWrT?9J%~pWNqbJ5Ys~; z{FK&Nf3n^h`n^2bIE%ib=)K2~6$=f<+8dlIiI9)KmTas=MR0gPI(UC{&$2TL6O5>v1eqmLs{|jZ4A~y@=E9={R_}uTwJ;0ea%{0;NI@|rUh*xUmEu`qG?I8`5cj*ACZ)aaFH1G){qTS}x0v9=!2g__<(6?<7Db)9IJ9kfdC>)^iqp zeJJ~Rl#$;P+cBotpoWS0?ny4X`QlS%3BKKc*zTer;MrK~5!98yK#J*%L7xeIG)bsf zGM3C-Qp&r+Fq@cZZU^K)4KY;hK)7S;9s^D3Rmu}4Pgin4WqAD%84m&x5l06V{Ji(?8M&Mvc&&vond6eC`Y*wWn-- z*sY<{U0)Q7g@cX~ONh8X^H5qiS(eJa&SAyXdjPp{=;j;CSB-}bvR-hBZ2u^7lJub8 zOTm6{=p2thB@Nc%36vkg34o%2bt&{4B(-w;BC7>6sXA-4y0)GH%U_qeFF)k26bewG z)TQD#Z-R8hB?%9|ojlnIf%1#c{<1iZYntSFwd@Ulr7sQxD8p z(5s}3(h`RmkK;}+Q}f#|i2Z#!O4;|y~ zAbX)_0r&F(kd7^slcW2njDbMhZV03ViykUPdKgDQYV=LJ?*BLDKpHxhpV4XUx;`p| z_q*2Lt31I`GS!8>FXbgEn4_TiJ_tRv@t{5~K#4r((zni?3p;QUHF*39IO8zirn6DM zGf22eU-AKuUvkmdrc`E8f<+j@r$$Ph7k8C@7V9Q(29An(=~o}4N-kasc5J1JyjYaI zQ;CJ`j_JC+kU}AJ$|~JCi|zpEA?Ll)i&Y3)thiVw{y-2W&*`N!`)QPRycleiSyk~c z6tHXo*fa8ZyXsU38{fO87~hFSx-)Hl48hK0$Om;B6}afTdu{=mL>R8PF(raDNzU2` zVu~q@qi*iz8o{AL2|FB8^I3^h-w2d{JsBu%Lx}F^T7rHbuKx`UK4Yb-7@+1v_yR=Y zePM;d_s9!f%_7uMa=8q@yEw0dkD|{4$tmYHb=D)o8Tt$02i1|X(@!Zw{Z5wylF(f8 zHw78jm0mR_9d3(`-y!U91LS)D*7TNW!gV~fY)jxt^qCVq%n_g?YN`KY1XXg-XfqdC z@p^38UdU=#u39XKtFsyuraiht6oU_8+5S&Lb(Ero{XQ1WmQkb)JQa9S@+ z?U~KbW|a+6_^Q`2)zqWIVR?RskvxA=XJ3l~AQ;k=j*T)V1EG0u&7`!{4Bh~qEAI1Z z?ngf}o6HBpKoLIz?EO1ijOJ8V}67YbWw|kplbpVet}ods=_nqWU%Ek?7l5nWBU3ETCDj zp!KS@B*z6+X;||u(H7s;7EpjhUzoxGmWWp%*6$v@5J&L}^l_t8-x3a=Yi8dWw|hUI zmtheJroT%kN>CbO4~=^}D%eBBpj=1jN;93WHV>R?^v7jT@^s`-9o5%f?xd{5ng|c# z?}K^QeH#Qh+nI3ln{_;pvt!^LylxWNJ?hb3y)I)kbYYdhyZmJo=dX5A4e;dd_mHcSv$w90C zt)B7N-Fri(#i>%{QE&?UQONR_aD<(BlV$3)505RM8J_`ZF53o8xc3wZ}HIQ;Oec_JOhpl1c;Y;=nW zB`lHDR6yI<7d4iCP=Y!sUi<{3^CwHLrAx#^tOEtN{rxUw`vjIB zog2L8@u!G3e}&>%t{#fAtnQwG84Ng-9r02Yry?sg4lt)P;MIR4UeSrMCo%%EJ?-0! ztL7!HywH)d`>i~IKN zX8`;?J6DGT&x`{O>2Wi%2Fu-jF}Heif6>DBmffa~1M*<;&`Xj33%>HJdtmpsND|1j zlONJM?RKrfT{QMWwCLrM-!!yaX_$-GEk}qxHsiWC?F{WlWMuY+UsZ@|A50G1Wo3F; z@lOdj@lNb>bWmh6K*p*yv1e)_B;i5;y(Hp{i^;kS4}hPpRO-5s5zL zdE(b@+{B+bO$2gc=-={%*#o-1<$2FJ{B_=t4`J&(;9Hxe3)_3R1j#Q7^We4P$qx&O zMB+Vo3ocH32zHZxZy)(N3Kyeb06PLt6ISlSb3a&%A9PnucfblR5DFis59Zd~rQs@L z%^2v^bQLjX6))BD@*0a28<)16R2;F-U?ywJNK$$y8mR1FTQr#mwdI{0$;5qwfl`4X z%=hsehY8JgxZ&`k%=A9%{oVJ9(%%vteSLC-jr{$V{d@b3#T>&u<5%Go;+tRis2JOX zKurDbo>+O>#LTY0`xz_cS5P#nF;4Fm{Ql zlM{p|&;4Rrv@bI=*uvf4&j=ssFiz6hb4PXx<|U=^|h{?m-CZ@Va^_#PZ! z5IWBpbsC$qsP=RGuEE)SuQ!zGh3Nwc6uvnHRewzxt5*`=N;Z)cl@*6Z>SutpI^=-7|hSO&Y3 zgw}Ocp(2eq7p!_>puE}{5^e>xBjqAe#C>)ut@B^ZJ8 zXCq85YhKh`|001@Ir*Uw=t79bqwgQRn*}_;NXIJUdqmXZNLens$nNZ-;CZsb2%6Fw zLCbAt2tr6d{$QmVZ_#z0XF|zjsd0TmvgYrO}g53{6PC-}2*+Im@ucu&8aO;Ytdv#k;s*GrlHOXsinCCOvBINSt zSlojJJWEYPN|%J$E{Jg!rE6NX(}9{GwQ@8!a4b(`igrW`iPJUh%rGW^3y~PMSmdRI zAj(`KNY(uAJ%Wh!<{;5Y3z?VMqJy;$_U7#QRY4uX`pxvKf-`yx8pCG8xU39FQ*Ewg zc_lTl6bdx`{+D`9-oIy;VQ@c7Hq#Lc&mcl~35CAHhJG^Yl2+kZuJg$;Sn8#@#v;j;1Hhj z=nK=BDnEpXKtCIubw0z~d9mp5>o~zGSWvi3T2vsbOslzWh``WX0j~aNh!R@t#5{AU zg4(>7I45VNY3YL69M0fXUp9b-mn~C0vL**{8)ItX$FNr$ZWLS;hFB-JzEW@4p5*&F zWX8muWfm6`$;V)6^=15So_ntV7SU^mVyMHWLHMZjwkP5d3|p5k5=cchPlo*pXw2k> zqO*aX%QLH(yH8XGVh@(a@BRqyg!?~B6!q5`><^?>($px~YwLcIL8>4;S z?`No8XGATDpVh*@O#q@BDz00k>bA(vKMDzTYe>p!(HHq48)V_Te4EekdEQq1N_Dr# z^Wli=@^Jhf3C5_+M4$B;`+vDzeHBD<8dhFyCuANU%Vw>Rn)eo+dI&#_3y2u6qYU`i zn1@UyO{gBnWhJT@8$6Os<)B`4m$Lv_H%bVdt9P1i)POBjtwRmpr}g89Fb>GZ+nCj_=Js8Y zEV-q+I?^bNp#o?viPsISrye8P`wl!G*e#AZY`%+;NG&w%$aWAcjC6&1S7HooiTSE~ z#4L!&8h%TB&=$p8g2YVqg0!RXgJ8$vd-sJ-Z|jNSC5mytg9jgXpE|}oh1|_=YBG6I zEmM7`_#*dTfAn)?D)kblhcXW>jtaWRutz6QPDOw~l!y@ex0PJ7jXfo|hf5Y8ar07n z1>MNG^%rq*sIUYz)9Iw%x;W%eZPlD)dT=IV^Mirg<+aK_>8f=G);IB=)|uU7fwBet zpV7Lu&Z4s#pQJjUvZP6$DgnC*@}0N&dWLOW;{fzn$=?Ym5u7*U*>ugoKzX+9|7<5F2}f-j1V!BpUNnkiiluN(G?bq={lqZnJd=@ zR!&P6(`1vTc&&yo(wocP@A^1Ny3 zKj|Fx+lx?nbBMyi1Y`WJTMHq;PFQ!(8cwoCT5#ACMIn6V^uv7|2GMC-oY+tr5?bm; zYk<>>9#>A5Cwm%{=HCf)zh%`R;-}}i_4*zTuy{unNQGS+rS`Loh`g4B2>vzRy)^I! zlVh|KVr9hXRu#Wmx<*=d7T`nY6bhq~9u;&HSa$qP#!*A{U4%icgt+f-p;>7mBQ@gr zLqGq}J}cAmjjr#!Zz;B$jF6u3Xu>LuHWxDC_i58~k%FbXZ}f>dZ6@!#6`SGR-PcH* zFRrHg+bQ7bsT=Be-J3p8Pu}>DAF=Q8A7NQLr1+cD<4nbUc1rhQk0t_sAS2nEyXbIg zLJ3qUz9L(sk}B)MoTK+1XC#cXn#KPse+_{0S%hsP9W{zL>gh1%S0<+ez#cpj=?zK7 z*W8djuna+xTX9*4M@y=N6=d>~^9~+yCLVqKO#%pN7i|x+M?rKqR16vj)!+a?&bgHi z<+**mk3~ira%=NkI$WROM`S-H2;BIZg?TYDkHJCb7l2$6!32*W%5FzL`j>=}MppsJ zRgasZxYX*=x1%yb+^&c|OxX+qy@x{Ju+y`znt$nDwje7Y0&qFi_-I~26BT?ihLaN; zKGjU5k_mB-oxqziraIhPdfRuC7D20vd`1@T)5Xq*=ip|3T*T#N--CyrmVIpgC4R(y zKs0-bp0Eu8yi#ek^R(@T;-d#hiWPLNNqmcY&c^1s6l9_gz&(y-79qA4$Bd-FGtIi!Ng!H@%SAIC4r+flnE~N%mc~ipl1%JK zb4FQQpt)WJ<>&Jwkh@D-QwkhzgS>4HD)6%A1wVd_42f%2)Y@NDAKgP`5Ing98>9D&goICSTE(P^aJgJ>{>+@4J$-af znBnp{yUFdy)Dk(5R~Jb|xha25{k*wkWI;_2YLSpQZ$RQ@x(9xoB_9(Vh5EZ4gR7>l z%pBsYQ2;3KjF}lpp{K9IA<~#QR%!2E4yS9hd0Tg8a}4naAia0H{`RoG(3q>B0L)}7 z5dKccEMa||@(%ZX2lke<(NF;hN$&CRPrb; z2ggciBr*>fuHcNB5w6C|NAeF07yk;66A{Q(J6!-Ku|}rk60z17_)B4@BhQ}SL!M3DMZI2 z`Dv4QQ9iwEL%x^g&)#6Qq)e8oQ%NL)J>qK@6dsG@=bz6<5X4+X(=CEOvDIXy1Nrr# zXJKFZme^PSJI%twCNlFO@zU6*FEYc_czSBuvOf|yX~k9)zmTD(9Hnvf0T@g1A3TIv zR${%(xg0aL)H8;vXo`NJkznDsACx9E%15w#my+ZbION2fpAU~G#4fdCL*|%E9AMTv z(joE|9(l1Geqg-F?aex2@U?80ea-w5ui+a!Z?(|HSH8*=<)kVIXRSKwB1qEVnJ&vk z-u}D(zM)A=hQS$IiOe#Km(ltGj2Z+4RU;ybrFLvYwWA`ArznoxD;?FumcAetobxAL zyrk;X3>RPXK6Zu_z$ME<9Y*o|qo$Gx^hF?xiY&=0%2hCSExO$AVMsv5zCtFCMFWp+ zm8tK-+ez9U z+-t>Ft6wHj2RF?^g2I8Y!%B z30yi0wwYxL3mhsMXu|Aqlq5E3&q#c?MB;C_2ldy?Yo)?3*@Ey$%WuFjTyW^+D4tfE z&9&e+v3h}EaihRf<%?Xu3;NSmFvg9_{MAI)4PZLU3-lksEHk$3Ii|m?C(d}J%vvJd zB%1)Si-RvRUn=%kBuU92TH=wpQL!W0?|k()av!hMw(n8kLjhMZ}DE?SPX&zY) zV9E0a@Xj-ni;8_kO2o}_1YXi*E$fh$p<&m^2CEGSorHOjzHf%3W5}i#f5Qk-=tceB zdk{0SpoVzQkIXPLJPiS`r)_tfnR-g=M_)VC4xz-6Rz$&?Tam~lbT8+^FaA-`fg~5M z$RAe#^^g9N{dL9}Ei~e0Nj4!`u8Gc8DH5GMnxTMzmdy>*E@0O&TRR+JHD~`Z`&Rgi zM}Pjl?2k?aRm!Fn2!s@7SmF)GK;x5_1L=b<=6qcbGuDtC%7=%BVqeO*#G1u|77&@> zlHUHqN3-ML7|PviX2&qp*AM{HGCDN$Qf9?SvjHhLmvz*^PhC+`rD@eK?tr@AEs(ts zPWz9>C$7f5+)~-1iUyz_=lcIUOIDj=aPWD|>vo=2oxtD!WMO(+beT{ffe+H=C+vJi%^;tOEF_>ADApXUCXnY($ZaPFi>AbuCp)(Y5=IJ(6&G`?= z)|CS2qZ2sdRCXNP8#YWmkJ(@B1Z-b2B~$7kKe+cRGON{G`VcTLbMMd9L-$h?csF<>d!`|i8PTQBW)!!pxhIXb zbeiT&hRAF9K@wj=V6}*r&iJwO;+CeA3-lR|s#lTzBFU^wI=nD~{gvFd8Ulyn>Y~Uj zCN3xb<(tqr1NBUQqfC&8w3yahU>*a_-~CuLw*9nBJF(k$;q}nYhoD0JUgD;dd?yW; z@#U{c;~`DGxFyh%r!=$TKAP3a%4OT|=!KAyG1n=VhUHKD-MU*|M-CbLIDpcG=iY$? zEU{d{nUOSX_`4p7mJ_Q`j(Qg)P_u>-!%|d6@We}@>U8vlNQPMnGR zG=Hh6%0OH)7j}f;abuzCoO{@TEMMA3KXfLuLs`)UZ4+%#H}U?xRH}Yg#@;M~Sgor% z=MS26aK#os0g<<-DK3ue{d#KK;KwisXfgAO zy^!8ab^aqqLEY~c>H;rSFmUu(+^)Qa%lo#b)|WmuHCH}rIe4j2!NHe-ulF&s?MrS) z&btQT4q^!UdZGY|$Z5?_lugN3Q)b|7sR=Zb*fi^wlKUdEa@XR@Cj{aHOMZOwlZl_n%0qB4 znpPoQ+YIKHIKCC{WMirR;c++@NAHla^8*yL-6p^ z(Q?A*qMUB!1uBS%DrxDK6W!lUZo&J^dw*gt+mLfE$X%noV7jgu=syb8#YnY(C@4{P z6cUAve>oqm6nuuJWzeV?sbpn2y1Ix;>U?-V+}~#y9zP93y5jMg9UacZP0!zgN1lrX zI+JK6ZF#E3XcxK>%*v8wO8gL1kGsbZEtpD3_x}JW+1`DP9rvXG0000 + <% @barks.each do |b| %> +
  • +
    @<%= b.user.username %>
    +
    <%= b.body %>
    + +
  • + <% end %> + diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 0000000..d687199 --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,18 @@ + + + + Woofr + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> + <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + <%= csrf_meta_tags %> + + + +
    +<%= image_tag 'woofr.png', class: 'logo', alt: 'Woofr logo', title: 'Woofr' %> +
    + +<%= yield %> + + + diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 0000000..66e9889 --- /dev/null +++ b/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/bin/rails b/bin/rails new file mode 100755 index 0000000..4d608ed --- /dev/null +++ b/bin/rails @@ -0,0 +1,8 @@ +#!/usr/bin/env ruby +begin + load File.expand_path("../spring", __FILE__) +rescue LoadError +end +APP_PATH = File.expand_path('../../config/application', __FILE__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100755 index 0000000..8017a02 --- /dev/null +++ b/bin/rake @@ -0,0 +1,8 @@ +#!/usr/bin/env ruby +begin + load File.expand_path("../spring", __FILE__) +rescue LoadError +end +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 0000000..acdb2c1 --- /dev/null +++ b/bin/setup @@ -0,0 +1,29 @@ +#!/usr/bin/env ruby +require 'pathname' + +# path to your application root. +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) + +Dir.chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file: + + puts "== Installing dependencies ==" + system "gem install bundler --conservative" + system "bundle check || bundle install" + + # puts "\n== Copying sample files ==" + # unless File.exist?("config/database.yml") + # system "cp config/database.yml.sample config/database.yml" + # end + + puts "\n== Preparing database ==" + system "bin/rake db:setup" + + puts "\n== Removing old logs and tempfiles ==" + system "rm -f log/*" + system "rm -rf tmp/cache" + + puts "\n== Restarting application server ==" + system "touch tmp/restart.txt" +end diff --git a/bin/spring b/bin/spring new file mode 100755 index 0000000..7b45d37 --- /dev/null +++ b/bin/spring @@ -0,0 +1,15 @@ +#!/usr/bin/env ruby + +# This file loads spring without using Bundler, in order to be fast. +# It gets overwritten when you run the `spring binstub` command. + +unless defined?(Spring) + require "rubygems" + require "bundler" + + if match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m) + Gem.paths = { "GEM_PATH" => [Bundler.bundle_path.to_s, *Gem.path].uniq } + gem "spring", match[1] + require "spring/binstub" + end +end diff --git a/config.ru b/config.ru new file mode 100644 index 0000000..bd83b25 --- /dev/null +++ b/config.ru @@ -0,0 +1,4 @@ +# This file is used by Rack-based servers to start the application. + +require ::File.expand_path('../config/environment', __FILE__) +run Rails.application diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 0000000..618a498 --- /dev/null +++ b/config/application.rb @@ -0,0 +1,26 @@ +require File.expand_path('../boot', __FILE__) + +require 'rails/all' + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module Woofr + class Application < Rails::Application + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + + # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. + # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. + # config.time_zone = 'Central Time (US & Canada)' + + # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. + # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] + # config.i18n.default_locale = :de + + # Do not swallow errors in after_commit/after_rollback callbacks. + config.active_record.raise_in_transactional_callbacks = true + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 0000000..6b750f0 --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,3 @@ +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 0000000..1c1a37c --- /dev/null +++ b/config/database.yml @@ -0,0 +1,25 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +default: &default + adapter: sqlite3 + pool: 5 + timeout: 5000 + +development: + <<: *default + database: db/development.sqlite3 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: db/test.sqlite3 + +production: + <<: *default + database: db/production.sqlite3 diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 0000000..ee8d90d --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require File.expand_path('../application', __FILE__) + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 0000000..b55e214 --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,41 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # Adds additional error checking when serving assets at runtime. + # Checks for improperly declared sprockets dependencies. + # Raises helpful error messages. + config.assets.raise_runtime_errors = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 0000000..5c1b32e --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,79 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Enable Rack::Cache to put a simple HTTP cache in front of your application + # Add `rack-cache` to your Gemfile before enabling this. + # For large-scale production use, consider using a caching reverse proxy like + # NGINX, varnish or squid. + # config.action_dispatch.rack_cache = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + # config.log_tags = [ :subdomain, :uuid ] + + # Use a different logger for distributed setups. + # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 0000000..1c19f08 --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,42 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure static file server for tests with Cache-Control for performance. + config.serve_static_files = true + config.static_cache_control = 'public, max-age=3600' + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Randomize the order test cases are executed. + config.active_support.test_order = :random + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb new file mode 100644 index 0000000..01ef3e6 --- /dev/null +++ b/config/initializers/assets.rb @@ -0,0 +1,11 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Add additional assets to the asset load path +# Rails.application.config.assets.paths << Emoji.images_path + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in app/assets folder are already added. +# Rails.application.config.assets.precompile += %w( search.js ) diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100644 index 0000000..59385cd --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb new file mode 100644 index 0000000..7f70458 --- /dev/null +++ b/config/initializers/cookies_serializer.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 0000000..4a994e1 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 0000000..ac033bf --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 0000000..dc18996 --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb new file mode 100644 index 0000000..654281c --- /dev/null +++ b/config/initializers/session_store.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.session_store :cookie_store, key: '_woofr_session' diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb new file mode 100644 index 0000000..33725e9 --- /dev/null +++ b/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] if respond_to?(:wrap_parameters) +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 0000000..0653957 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,23 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 0000000..8525e20 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,52 @@ +Rails.application.routes.draw do + root 'barks#index' + + # Example of regular route: + # get 'products/:id' => 'catalog#view' + + # Example of named route that can be invoked with purchase_url(id: product.id) + # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase + + # Example resource route (maps HTTP verbs to controller actions automatically): + # resources :products + + # Example resource route with options: + # resources :products do + # member do + # get 'short' + # post 'toggle' + # end + # + # collection do + # get 'sold' + # end + # end + + # Example resource route with sub-resources: + # resources :products do + # resources :comments, :sales + # resource :seller + # end + + # Example resource route with more complex sub-resources: + # resources :products do + # resources :comments + # resources :sales do + # get 'recent', on: :collection + # end + # end + + # Example resource route with concerns: + # concern :toggleable do + # post 'toggle' + # end + # resources :posts, concerns: :toggleable + # resources :photos, concerns: :toggleable + + # Example resource route within a namespace: + # namespace :admin do + # # Directs /admin/products/* to Admin::ProductsController + # # (app/controllers/admin/products_controller.rb) + # resources :products + # end +end diff --git a/config/secrets.yml b/config/secrets.yml new file mode 100644 index 0000000..396ca43 --- /dev/null +++ b/config/secrets.yml @@ -0,0 +1,22 @@ +# Be sure to restart your server when you modify this file. + +# Your secret key is used for verifying the integrity of signed cookies. +# If you change this key, all old signed cookies will become invalid! + +# Make sure the secret is at least 30 characters and all random, +# no regular words or you'll be exposed to dictionary attacks. +# You can use `rake secret` to generate a secure secret key. + +# Make sure the secrets in this file are kept private +# if you're sharing your code publicly. + +development: + secret_key_base: a5f9bef964071b09d8af27b4adb3e70c948af43b666fc51650adb43cde93908cc4a506c025715c1b0001827b42c494c2dbfeea0f7ad9bd994ef82defda4295f2 + +test: + secret_key_base: af6d060dfaf40a99c72d085d0f0ff9b37b3d577cc97ba0c863765ef95ef5caa3ccd556074a3abde57c74ad3ccffe1f9139c446d9b53877fe1dc855c18e9879cf + +# Do not keep production secrets in the repository, +# instead read values from the environment. +production: + secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> diff --git a/db/migrate/20150621222636_create_users.rb b/db/migrate/20150621222636_create_users.rb new file mode 100644 index 0000000..78f2820 --- /dev/null +++ b/db/migrate/20150621222636_create_users.rb @@ -0,0 +1,9 @@ +class CreateUsers < ActiveRecord::Migration + def change + create_table :users do |t| + t.string :username + + t.timestamps null: false + end + end +end diff --git a/db/migrate/20150621222734_create_barks.rb b/db/migrate/20150621222734_create_barks.rb new file mode 100644 index 0000000..72b8583 --- /dev/null +++ b/db/migrate/20150621222734_create_barks.rb @@ -0,0 +1,11 @@ +class CreateBarks < ActiveRecord::Migration + def change + create_table :barks do |t| + t.string :body + t.belongs_to :user, index: true + t.datetime :barked_at + + t.timestamps null: false + end + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 0000000..3ce83bb --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,32 @@ +# encoding: UTF-8 +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# Note that this schema.rb definition is the authoritative source for your +# database schema. If you need to create the application database on another +# system, you should be using db:schema:load, not running all the migrations +# from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema.define(version: 20150621222734) do + + create_table "barks", force: :cascade do |t| + t.string "body" + t.integer "user_id" + t.datetime "barked_at" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + add_index "barks", ["user_id"], name: "index_barks_on_user_id" + + create_table "users", force: :cascade do |t| + t.string "username" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + +end diff --git a/db/seeds.rb b/db/seeds.rb new file mode 100644 index 0000000..345c998 --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,13 @@ +5.times do + user = User.create( + username: Faker::Internet.user_name + ) + + 5.times do + Bark.create( + user: user, + body: Faker::Hacker.say_something_smart, + barked_at: Faker::Time.between(2.weeks.ago, Time.now) + ) + end +end diff --git a/lib/assets/.keep b/lib/assets/.keep new file mode 100644 index 0000000..e69de29 diff --git a/lib/tasks/.keep b/lib/tasks/.keep new file mode 100644 index 0000000..e69de29 diff --git a/log/.keep b/log/.keep new file mode 100644 index 0000000..e69de29 diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..b612547 --- /dev/null +++ b/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
    +
    +

    The page you were looking for doesn't exist.

    +

    You may have mistyped the address or the page may have moved.

    +
    +

    If you are the application owner check the logs for more information.

    +
    + + diff --git a/public/422.html b/public/422.html new file mode 100644 index 0000000..a21f82b --- /dev/null +++ b/public/422.html @@ -0,0 +1,67 @@ + + + + The change you wanted was rejected (422) + + + + + + +
    +
    +

    The change you wanted was rejected.

    +

    Maybe you tried to change something you didn't have access to.

    +
    +

    If you are the application owner check the logs for more information.

    +
    + + diff --git a/public/500.html b/public/500.html new file mode 100644 index 0000000..061abc5 --- /dev/null +++ b/public/500.html @@ -0,0 +1,66 @@ + + + + We're sorry, but something went wrong (500) + + + + + + +
    +
    +

    We're sorry, but something went wrong.

    +
    +

    If you are the application owner check the logs for more information.

    +
    + + diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..3c9c7c0 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,5 @@ +# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file +# +# To ban all spiders from the entire site uncomment the next two lines: +# User-agent: * +# Disallow: / diff --git a/spec/models/bark_spec.rb b/spec/models/bark_spec.rb new file mode 100644 index 0000000..eb0447d --- /dev/null +++ b/spec/models/bark_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe Bark, type: :model do + pending "add some examples to (or delete) #{__FILE__}" +end diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb new file mode 100644 index 0000000..47a31bb --- /dev/null +++ b/spec/models/user_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe User, type: :model do + pending "add some examples to (or delete) #{__FILE__}" +end