Created
January 19, 2011 01:06
-
-
Save sprite2005/785490 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create the network | |
network = Network.create(:name => "4 Ringz", :description => "4 Ringz is better than 3 ringz!") | |
# Create the site | |
site = network.sites.create(:name => "Beach Creeps") | |
# Create a source for the site | |
source = site.sources.create(:name => "Beach Creeps", :url => "http://www.beachcreeps.com") | |
# Create a post selector type | |
post_selector_type = PostSelectorType.create(:name => "Beach Creeps Post Selector", :selector => "#contententry h2 a") | |
# Add post selector type to beach creeps source | |
source.post_selector_types << post_selector_type |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment