Skip to content

Commit

Permalink
Move folders around
Browse files Browse the repository at this point in the history
  • Loading branch information
dingbat committed May 16, 2012
1 parent 50957aa commit 6531aaa
Show file tree
Hide file tree
Showing 292 changed files with 908 additions and 7,500 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -24,4 +24,4 @@ build

# Ignore the server app's git repo - for my own use when pushing to Heroku.

extras/nsrails.com/.git/
demos/nsrails.com/.git/
File renamed without changes.
File renamed without changes.
@@ -1,5 +1,5 @@
//
// Prefix header for all source files of the 'Demo' target in the 'Demo' project
// Prefix header for all source files of the 'NSRailsDemo' target in the 'NSRailsDemo' project
//

#import <Availability.h>
Expand Down
@@ -1,9 +1,9 @@
//
// main.m
// Demo
// NSRailsDemo
//
// Created by Dan Hassin on 5/10/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
// Copyright (c) 2012 InContext LLC. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
@@ -1,6 +1,6 @@
//
// AppDelegate.h
// Demo
// NSRailsDemo
//
// Created by Dan Hassin on 2/20/12.
// Copyright (c) 2012 InContext LLC. All rights reserved.
Expand Down
@@ -1,6 +1,6 @@
//
// AppDelegate.m
// NSRailsApp
// NSRailsDemo
//
// Created by Dan Hassin on 2/20/12.
// Copyright (c) 2012 InContext LLC. All rights reserved.
Expand Down
@@ -1,6 +1,6 @@
//
// InputViewController.h
// NSRailsApp
// NSRailsDemo
//
// Created by Dan Hassin on 2/20/12.
// Copyright (c) 2012 InContext LLC. All rights reserved.
Expand Down
@@ -1,6 +1,6 @@
//
// InputViewController.m
// NSRailsApp
// NSRailsDemo
//
// Created by Dan Hassin on 2/20/12.
// Copyright (c) 2012 InContext LLC. All rights reserved.
Expand Down
@@ -1,6 +1,6 @@
//
// PostsViewController.h
// NSRailsApp
// NSRailsDemo
//
// Created by Dan Hassin on 2/20/12.
// Copyright (c) 2012 InContext LLC. All rights reserved.
Expand Down
@@ -1,6 +1,6 @@
//
// PostsViewController.m
// NSRailsApp
// NSRailsDemo
//
// Created by Dan Hassin on 2/20/12.
// Copyright (c) 2012 InContext LLC. All rights reserved.
Expand Down
@@ -1,6 +1,6 @@
//
// ResponsesViewController.h
// NSRailsApp
// NSRailsDemo
//
// Created by Dan Hassin on 2/20/12.
// Copyright (c) 2012 InContext LLC. All rights reserved.
Expand Down
@@ -1,6 +1,6 @@
//
// ResponsesViewController.m
// NSRailsApp
// NSRailsDemo
//
// Created by Dan Hassin on 2/20/12.
// Copyright (c) 2012 InContext LLC. All rights reserved.
Expand Down Expand Up @@ -134,7 +134,7 @@ - (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInt
{
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"MM/dd/yy"];
NSString *timestamp = [@"Posted on " stringByAppendingString:[formatter stringFromDate:post.createdAt]];
NSString *timestamp = [NSString stringWithFormat:@"(Posted on %@)",[formatter stringFromDate:post.createdAt]];

NSString *encouragement = @"There are no responses to this post.\nSay something!\n\n";

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
452 changes: 452 additions & 0 deletions demos/ios - objective-c/NSRailsDemo.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Expand Up @@ -3,8 +3,8 @@ require 'motion/project'

Motion::Project::App.setup do |app|
# Use `rake config' to see complete project settings.
app.name = 'NSRails Ruby'
app.name = 'NSRails-Ruby'

# Add NSRails as a vendor project
app.vendor_project('../../nsrails', :xcode, :target => "NSRails", :headers_dir => 'source')
app.vendor_project('../../nsrails', :xcode, :target => "NSRails", :headers_dir => 'Source')
end
File renamed without changes.
Expand Up @@ -81,7 +81,7 @@ def tableView(tableView, titleForFooterInSection:section)
if @post.responses.empty?
str += "There are no responses to this post.\nSay something!\n\n"
end
str += "Posted on #{@post.created_at.strftime("%m/%d/%y")}"
str += "(Posted on #{@post.created_at.strftime("%m/%d/%y")})"
end

def tableView(tableView, titleForHeaderInSection:section)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Expand Up @@ -1797,7 +1797,7 @@ <h4 class="method-subtitle">Declared In</h4>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2012 Dan Hassin. All rights reserved. (Last updated: 2012-05-15)</span><br />
<p><span class="copyright">&copy; 2012 Dan Hassin. All rights reserved. (Last updated: 2012-05-16)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.0.5 (build 789)</a>.</span></p>

Expand Down

0 comments on commit 6531aaa

Please sign in to comment.