Skip to content

Commit

Permalink
housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
meeech committed Apr 24, 2014
1 parent a65a047 commit c467c9d
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 23 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.0.5

* Switch to json/pure
* Bring some external yui deps into the project

1.0.4

* Add Shopify oAuth support.
Expand All @@ -6,11 +11,11 @@

* Add .less, .scss, .coffee to ignored extensions
* Fix for Maverick OSX 10.9
* Fix sidebar to scroll when you have many shops.
* Fix sidebar to scroll when you have many shops.

1.0.2

* Upgrade to TideSDK 1.3.1.
* Upgrade to TideSDK 1.3.1.
* Add .hg to list of ignored directories
* Fix some upload error handling

Expand Down
26 changes: 13 additions & 13 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ Building

* OSX (10.8)
* [TideSDK](http://www.tidesdk.org)
* Default Ruby 1.8.7 which ships with OSX (/usr/bin/ruby)
* Default Ruby 1.8.7 which ships with OSX (/usr/bin/ruby) [note: things seem to be working fine with 2.0.X that now ships with 10.9]

**Getting started**

Packaging up the app. This will create a .app, which you can then zip up for distribution:

`tidebuilder.py -i "dist,packages" -n -t bundle -d /path/to/build/to /path/to/app/source`
`tidebuilder.py -i "dist,packages" -n -t bundle -d /path/to/build/to /path/to/app/source`
(tidebuilder.py should be in your `~/Library/Application Support/TideSDK/sdk/osx/[version]`)

Building on OSX still does not recognize `.help` files, so you'll have to make the app aware of the help book. So, once you've built the .app, right click on it and `Show Package Contents`. In the `Contents` folder, open `Info.plist` in your favourite text editor. `Info.plist` is a XML file. Under `plist > dict` you will want to add:
Expand All @@ -28,13 +28,13 @@ Building on OSX still does not recognize `.help` files, so you'll have to make t

To zip up the .app:

`zip -ry NameOfZip.zip AppName.app`
`zip -ry NameOfZip.zip AppName.app`

**Development Setup**

You'll need the TideSDK Developer tool which assists you to create, run and package your apps during development. You can grab this from [TideSDK.org](http://www.tidesdk.org).
You'll need the TideSDK Developer tool which assists you to create, run and package your apps during development. You can grab this from [TideSDK.org](http://www.tidesdk.org).

Launch the Developer tool, and Import the project. Switch to the **Test & Package** tab, and click **Launch App**. This should build and run the app.
Launch the Developer tool, and Import the project. Switch to the **Test & Package** tab, and click **Launch App**. This should build and run the app.

See `anatomy.md` included in this repo which outlines the code.

Expand All @@ -44,14 +44,14 @@ See in-app Help menu for instructions.

**Contributors**

Tetsuro Takara [@t3tchi](https://twitter.com/t3tchi)
Mitchell Amihod [@meeech](https://twitter.com/meeech)
Tetsuro Takara [@t3tchi](https://twitter.com/t3tchi)
Mitchell Amihod [@meeech](https://twitter.com/meeech)

**Thanks**

[TideSDK](http://www.tidesdk.org)
[Listen](https://rubygems.org/gems/listen)
Beta Testers
Shopify
mightyoj
Scott Szarapka
[TideSDK](http://www.tidesdk.org)
[Listen](https://rubygems.org/gems/listen)
Beta Testers
Shopify
mightyoj
Scott Szarapka
15 changes: 8 additions & 7 deletions test/watch-test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,18 @@
Gem.use_paths(gem_path)


require 'json'
require 'json/pure'

require 'rb-fsevent'

gem 'listen', '= 0.5.3'
gem 'listen', '= 0.5.3'
require 'listen'

puts [ JSON.parser, JSON.generator ]

path = '/Users/mitch/Sites/klocko'
# path = '/Users/mitch/Sites/klocko'

Listen.to(path, :force_polling => false, :ignore => %r[.hg|.sass|.less]) do |modified, added, removed|
puts 'Modified:'
puts modified.inspect
end
# Listen.to(path, :force_polling => false, :ignore => %r[.hg|.sass|.less]) do |modified, added, removed|
# puts 'Modified:'
# puts modified.inspect
# end
2 changes: 1 addition & 1 deletion tiapp.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- These values are edited/maintained by Titanium Developer -->
<id>com.meeech.shopify_theme2</id>
<name>Shopify Theme</name>
<version>1.0.4</version>
<version>1.0.5</version>
<publisher>meeech</publisher>
<url>http://mitchell.amihod.com</url>
<icon>shopify.png</icon>
Expand Down

0 comments on commit c467c9d

Please sign in to comment.