first issuemaster
commitce6bae61c80fad2501d639d2fd316de422f90055
authorkotarba <jkotarba@volny.cz>
Sat, 16 Mar 2013 17:49:47 +0000 (16 18:49 +0100)
committerkotarba <jkotarba@volny.cz>
Sat, 16 Mar 2013 17:49:47 +0000 (16 18:49 +0100)
tree787a474cdacb3302b23f5add35c637582ff7809f
first issue
83 files changed:
.gitignore [new file with mode: 0644]
Gemfile [new file with mode: 0644]
Gemfile.lock [new file with mode: 0644]
README.rdoc [new file with mode: 0644]
Rakefile [new file with mode: 0644]
app/assets/images/rails.png [new file with mode: 0644]
app/assets/javascripts/application.js [new file with mode: 0644]
app/assets/javascripts/post2s.js.coffee [new file with mode: 0644]
app/assets/javascripts/posts.js.coffee [new file with mode: 0644]
app/assets/stylesheets/application.css [new file with mode: 0644]
app/assets/stylesheets/post2s.css.scss [new file with mode: 0644]
app/assets/stylesheets/posts.css.scss [new file with mode: 0644]
app/assets/stylesheets/scaffolds.css.scss [new file with mode: 0644]
app/controllers/application_controller.rb [new file with mode: 0644]
app/controllers/post2s_controller.rb [new file with mode: 0644]
app/controllers/posts_controller.rb [new file with mode: 0644]
app/helpers/application_helper.rb [new file with mode: 0644]
app/helpers/post2s_helper.rb [new file with mode: 0644]
app/helpers/posts_helper.rb [new file with mode: 0644]
app/mailers/.gitkeep [new file with mode: 0644]
app/models/.gitkeep [new file with mode: 0644]
app/models/post.rb [new file with mode: 0644]
app/models/post2.rb [new file with mode: 0644]
app/views/layouts/application.html.erb [new file with mode: 0644]
app/views/post2s/_form.html.erb [new file with mode: 0644]
app/views/post2s/edit.html.erb [new file with mode: 0644]
app/views/post2s/index.html.erb [new file with mode: 0644]
app/views/post2s/new.html.erb [new file with mode: 0644]
app/views/post2s/show.html.erb [new file with mode: 0644]
app/views/posts/_form.html.erb [new file with mode: 0644]
app/views/posts/edit.html.erb [new file with mode: 0644]
app/views/posts/index.html.erb [new file with mode: 0644]
app/views/posts/new.html.erb [new file with mode: 0644]
app/views/posts/show.html.erb [new file with mode: 0644]
config.ru [new file with mode: 0644]
config/application.rb [new file with mode: 0644]
config/boot.rb [new file with mode: 0644]
config/database.yml [new file with mode: 0644]
config/environment.rb [new file with mode: 0644]
config/environments/development.rb [new file with mode: 0644]
config/environments/production.rb [new file with mode: 0644]
config/environments/test.rb [new file with mode: 0644]
config/initializers/backtrace_silencers.rb [new file with mode: 0644]
config/initializers/inflections.rb [new file with mode: 0644]
config/initializers/mime_types.rb [new file with mode: 0644]
config/initializers/secret_token.rb [new file with mode: 0644]
config/initializers/session_store.rb [new file with mode: 0644]
config/initializers/wrap_parameters.rb [new file with mode: 0644]
config/locales/en.yml [new file with mode: 0644]
config/routes.rb [new file with mode: 0644]
db/migrate/20130312061308_create_posts.rb [new file with mode: 0644]
db/migrate/20130312154915_create_post2s.rb [new file with mode: 0644]
db/schema.rb [new file with mode: 0644]
db/seeds.rb [new file with mode: 0644]
development.sqlite3 [new file with mode: 0644]
doc/README_FOR_APP [new file with mode: 0644]
lib/assets/.gitkeep [new file with mode: 0644]
lib/tasks/.gitkeep [new file with mode: 0644]
log/.gitkeep [new file with mode: 0644]
public/404.html [new file with mode: 0644]
public/422.html [new file with mode: 0644]
public/500.html [new file with mode: 0644]
public/favicon.ico [new file with mode: 0644]
public/index.html [new file with mode: 0644]
public/robots.txt [new file with mode: 0644]
script/rails [new file with mode: 0644]
test/fixtures/.gitkeep [new file with mode: 0644]
test/fixtures/post2s.yml [new file with mode: 0644]
test/fixtures/posts.yml [new file with mode: 0644]
test/functional/.gitkeep [new file with mode: 0644]
test/functional/post2s_controller_test.rb [new file with mode: 0644]
test/functional/posts_controller_test.rb [new file with mode: 0644]
test/integration/.gitkeep [new file with mode: 0644]
test/performance/browsing_test.rb [new file with mode: 0644]
test/test_helper.rb [new file with mode: 0644]
test/unit/.gitkeep [new file with mode: 0644]
test/unit/helpers/post2s_helper_test.rb [new file with mode: 0644]
test/unit/helpers/posts_helper_test.rb [new file with mode: 0644]
test/unit/post2_test.rb [new file with mode: 0644]
test/unit/post_test.rb [new file with mode: 0644]
vendor/assets/javascripts/.gitkeep [new file with mode: 0644]
vendor/assets/stylesheets/.gitkeep [new file with mode: 0644]
vendor/plugins/.gitkeep [new file with mode: 0644]