motion-iconic 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6481a12298afaa8d388888315ef4e552ccf85c85
4
+ data.tar.gz: 0d95084b2ce8414994b63ae9c9d78cae4d95c615
5
+ SHA512:
6
+ metadata.gz: 9bc3de1d18500a5d3c88464861035832e4822997eb2ebe41fed8acd94ddce9ff4d12acbbfb765d7dbe655e09eea498a33c4da6cfd687cb6a00f92ef6afa2ee3c
7
+ data.tar.gz: de6feabc2da5ed8b71f7ebe5fa8e6fbdf5dcf707ade49e59ee808544934024eca4f0c8869ee64c55b8d710729b02fca5acfee9fca0c341e3d0c65da2bbf138f1
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ lib/bundler/man
9
+ pkg
10
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Aziz Light
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ Motion::Iconic
2
+ ==============
3
+
4
+ RubyMotion wrapper around [FontAwesomeKit](https://github.com/PrideChung/FontAwesomeKit).
5
+
6
+ Installation
7
+ ------------
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem "motion-iconic"
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Dependencies
18
+ ------------
19
+
20
+ Motion::Iconic depends on [FontAwesomeKit](https://github.com/PrideChung/FontAwesomeKit) as a CocoaPod. You do not need to add anything to your `Rakefile`, but you do need to run `rake pod:install`.
21
+
22
+ Usage
23
+ -----
24
+
25
+ ```ruby
26
+ Motion::Iconic::Icon.awesomeIcon(:codeFork, withSize:42)
27
+ ```
28
+
29
+ That's quite a mouthful... So `Motion::Iconic::Icon` is also aliased to `Mic`.
30
+
31
+ ```ruby
32
+ Mic.foundationIcon(:socialGithub, withSize:73)
33
+ ```
34
+
35
+ Here is the full list of implemented methods:
36
+
37
+ - `Mic.icon(icon, withSize:size, inCollection:collection)` — returns an `FAK*` instance.
38
+ - `Mic.awesomeIcon(icon, withSize:size)` — returns an `FAKFontAwesome` instance.
39
+ - `Mic.foundationIcon(icon, withSize:size)` — returns an `FAKFoundationIcons` instance.
40
+ - `Mic.IonIcon(icon, withSize:size)` — returns an `FAKIonIcons` instance.
41
+ - `Mic.ZocialIcon(icon, withSize:size)` — returns an `FAKZocial` instance.
42
+
43
+ For information on what you can do with those objects, refer to the [FontAwesomeKit documentation](https://github.com/PrideChung/FontAwesomeKit#example-usage).
44
+
45
+ Contributing
46
+ ------------
47
+
48
+ 1. Fork it ( http://github.com/AzizLight/motion-iconic/fork )
49
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
50
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
51
+ 4. Push to the branch (`git push origin my-new-feature`)
52
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
@@ -0,0 +1,176 @@
1
+ module Motion
2
+ module Iconic
3
+ module Constants
4
+ ICONS = {
5
+ awesome: [
6
+ :glass, :music, :search, :envelopeO, :heart, :star, :starO, :user, :film, :thLarge, :th,
7
+ :thList, :check, :times, :searchPlus, :searchMinus, :powerOff, :signal, :cog, :trashO, :home, :fileO,
8
+ :clockO, :road, :download, :arrowCircleODown, :arrowCircleOUp, :inbox, :playCircleO, :repeat, :refresh, :listAlt, :lock,
9
+ :flag, :headphones, :volumeOff, :volumeDown, :volumeUp, :qrcode, :barcode, :tag, :tags, :book, :bookmark,
10
+ :print, :camera, :font, :bold, :italic, :textHeight, :textWidth, :alignLeft, :alignCenter, :alignRight, :alignJustify,
11
+ :list, :outdent, :indent, :videoCamera, :pictureO, :pencil, :mapMarker, :adjust, :tint, :pencilSquareO, :shareSquareO,
12
+ :checkSquareO, :arrows, :stepBackward, :fastBackward, :backward, :play, :pause, :stop, :forward, :fastForward, :stepForward,
13
+ :eject, :chevronLeft, :chevronRight, :plusCircle, :minusCircle, :timesCircle, :checkCircle, :questionCircle, :infoCircle, :crosshairs, :timesCircleO,
14
+ :checkCircleO, :ban, :arrowLeft, :arrowRight, :arrowUp, :arrowDown, :share, :expand, :compress, :plus, :minus,
15
+ :asterisk, :exclamationCircle, :gift, :leaf, :fire, :eye, :eyeSlash, :exclamationTriangle, :plane, :calendar, :random,
16
+ :comment, :magnet, :chevronUp, :chevronDown, :retweet, :shoppingCart, :folder, :folderOpen, :arrowsV, :arrowsH, :barChartO,
17
+ :twitterSquare, :facebookSquare, :cameraRetro, :key, :cogs, :comments, :thumbsOUp, :thumbsODown, :starHalf, :heartO, :signOut,
18
+ :linkedinSquare, :thumbTack, :externalLink, :signIn, :trophy, :githubSquare, :upload, :lemonO, :phone, :squareO, :bookmarkO,
19
+ :phoneSquare, :twitter, :facebook, :github, :unlock, :creditCard, :rss, :hddO, :bullhorn, :bell, :certificate,
20
+ :handORight, :handOLeft, :handOUp, :handODown, :arrowCircleLeft, :arrowCircleRight, :arrowCircleUp, :arrowCircleDown, :globe, :wrench, :tasks,
21
+ :filter, :briefcase, :arrowsAlt, :users, :link, :cloud, :flask, :scissors, :filesO, :paperclip, :floppyO,
22
+ :square, :bars, :listUl, :listOl, :strikethrough, :underline, :table, :magic, :truck, :pinterest, :pinterestSquare,
23
+ :googlePlusSquare, :googlePlus, :money, :caretDown, :caretUp, :caretLeft, :caretRight, :columns, :sort, :sortAsc, :sortDesc,
24
+ :envelope, :linkedin, :undo, :gavel, :tachometer, :commentO, :commentsO, :bolt, :sitemap, :umbrella, :clipboard,
25
+ :lightbulbO, :exchange, :cloudDownload, :cloudUpload, :userMd, :stethoscope, :suitcase, :bellO, :coffee, :cutlery, :fileTextO,
26
+ :buildingO, :hospitalO, :ambulance, :medkit, :fighterJet, :beer, :hSquare, :plusSquare, :angleDoubleLeft, :angleDoubleRight, :angleDoubleUp,
27
+ :angleDoubleDown, :angleLeft, :angleRight, :angleUp, :angleDown, :desktop, :laptop, :tablet, :mobile, :circleO, :quoteLeft,
28
+ :quoteRight, :spinner, :circle, :reply, :githubAlt, :folderO, :folderOpenO, :smileO, :frownO, :mehO, :gamepad,
29
+ :keyboardO, :flagO, :flagCheckered, :terminal, :code, :replyAll, :mailReplyAll, :starHalfO, :locationArrow, :crop, :codeFork,
30
+ :chainBroken, :question, :info, :exclamation, :superscript, :subscript, :eraser, :puzzlePiece, :microphone, :microphoneSlash, :shield,
31
+ :calendarO, :fireExtinguisher, :rocket, :maxcdn, :chevronCircleLeft, :chevronCircleRight, :chevronCircleUp, :chevronCircleDown, :html5, :css3, :anchor,
32
+ :unlockAlt, :bullseye, :ellipsisH, :ellipsisV, :rssSquare, :playCircle, :ticket, :minusSquare, :minusSquareO, :levelUp, :levelDown,
33
+ :checkSquare, :pencilSquare, :externalLinkSquare, :shareSquare, :compass, :caretSquareODown, :caretSquareOUp, :caretSquareORight, :eur, :gbp, :usd,
34
+ :inr, :jpy, :rub, :krw, :btc, :file, :fileText, :sortAlphaAsc, :sortAlphaDesc, :sortAmountAsc, :sortAmountDesc,
35
+ :sortNumericAsc, :sortNumericDesc, :thumbsUp, :thumbsDown, :youtubeSquare, :youtube, :xing, :xingSquare, :youtubePlay, :dropbox, :stackOverflow,
36
+ :instagram, :flickr, :adn, :bitbucket, :bitbucketSquare, :tumblr, :tumblrSquare, :longArrowDown, :longArrowUp, :longArrowLeft, :longArrowRight,
37
+ :apple, :windows, :android, :linux, :dribbble, :skype, :foursquare, :trello, :female, :male, :gittip,
38
+ :sunO, :moonO, :archive, :bug, :vk, :weibo, :renren, :pagelines, :stackExchange, :arrowCircleORight, :arrowCircleOLeft,
39
+ :caretSquareOLeft, :dotCircleO, :wheelchair, :vimeoSquare, :try, :plusSquareO,
40
+ ],
41
+ foundation: [
42
+ :addressBook, :alert, :alignCenter, :alignJustify, :alignLeft, :alignRight, :anchor, :annotate, :archive, :arrowDown,
43
+ :arrowLeft, :arrowRight, :arrowUp, :arrowsCompress, :arrowsExpand, :arrowsIn, :arrowsOut, :asl, :asterisk, :atSign,
44
+ :backgroundColor, :batteryEmpty, :batteryFull, :batteryHalf, :bitcoinCircle, :bitcoin, :blind, :bluetooth, :bold, :bookBookmark,
45
+ :book, :bookmark, :braille, :burstNew, :burstSale, :burst, :calendar, :camera, :check, :checkbox,
46
+ :clipboardNotes, :clipboardPencil, :clipboard, :clock, :closedCaption, :cloud, :commentMinus, :commentQuotes, :commentVideo, :comment,
47
+ :comments, :compass, :contrast, :creditCard, :crop, :crown, :css3, :database, :dieFive, :dieFour,
48
+ :dieOne, :dieSix, :dieThree, :dieTwo, :dislike, :dollarBill, :dollar, :download, :eject, :elevator,
49
+ :euro, :eye, :fastForward, :femaleSymbol, :female, :filter, :firstAid, :flag, :folderAdd, :folderLock,
50
+ :folder, :foot, :foundation, :graphBar, :graphHorizontal, :graphPie, :graphTrend, :guideDog, :hearingAid, :heart,
51
+ :home, :html5, :indentLess, :indentMore, :info, :italic, :key, :laptop, :layout, :lightbulb,
52
+ :like, :link, :listBullet, :listNumber, :listThumbnails, :list, :lock, :loop, :magnifyingGlass, :mail,
53
+ :maleFemale, :maleSymbol, :male, :map, :marker, :megaphone, :microphone, :minusCircle, :minus, :mobileSignal,
54
+ :mobile, :monitor, :mountains, :music, :next, :noDogs, :noSmoking, :pageAdd, :pageCopy, :pageCsv,
55
+ :pageDelete, :pageDoc, :pageEdit, :pageExportCsv, :pageExportDoc, :pageExportPdf, :pageExport, :pageFilled, :pageMultiple, :pagePdf,
56
+ :pageRemove, :pageSearch, :page, :paintBucket, :paperclip, :pause, :paw, :paypal, :pencil, :photo,
57
+ :playCircle, :playVideo, :play, :plus, :pound, :power, :previous, :priceTag, :pricetagMultiple, :print,
58
+ :prohibited, :projectionScreen, :puzzle, :quote, :record, :refresh, :resultsDemographics, :results, :rewindTen, :rewind,
59
+ :rss, :safetyCone, :save, :share, :sheriffBadge, :shield, :shoppingBag, :shoppingCart, :shuffle, :skull,
60
+ :social500px, :socialAdobe, :socialAmazon, :socialAndroid, :socialApple, :socialBehance, :socialBing, :socialBlogger, :socialDelicious, :socialDesignerNews,
61
+ :socialDeviantArt, :socialDigg, :socialDribbble, :socialDrive, :socialDropbox, :socialEvernote, :socialFacebook, :socialFlickr, :socialForrst, :socialFoursquare,
62
+ :socialGameCenter, :socialGithub, :socialGooglePlus, :socialHackerNews, :socialHi5, :socialInstagram, :socialJoomla, :socialLastfm, :socialLinkedin, :socialMedium,
63
+ :socialMyspace, :socialOrkut, :socialPath, :socialPicasa, :socialPinterest, :socialRdio, :socialReddit, :socialSkillshare, :socialSkype, :socialSmashingMag,
64
+ :socialSnapchat, :socialSpotify, :socialSquidoo, :socialStackOverflow, :socialSteam, :socialStumbleupon, :socialTreehouse, :socialTumblr, :socialTwitter, :socialVimeo,
65
+ :socialWindows, :socialXbox, :socialYahoo, :socialYelp, :socialYoutube, :socialZerply, :socialZurb, :sound, :star, :stop,
66
+ :strikethrough, :subscript, :superscript, :tabletLandscape, :tabletPortrait, :targetTwo, :target, :telephoneAccessible, :telephone, :textColor,
67
+ :thumbnails, :ticket, :torsoBusiness, :torsoFemale, :torso, :torsosAllFemale, :torsosAll, :torsosFemaleMale, :torsosMaleFemale, :torsos,
68
+ :trash, :trees, :trophy, :underline, :universalAccess, :unlink, :unlock, :uploadCloud, :upload, :usb,
69
+ :video, :volumeNone, :volumeStrike, :volume, :web, :wheelchair, :widget, :wrench, :xCircle, :x,
70
+ :yen, :zoomIn, :zoomOut,
71
+ ],
72
+ ion: [
73
+ :alert, :alertCircled, :androidAdd, :androidAddContact, :androidAlarm, :androidArchive,
74
+ :androidArrowBack, :androidArrowDownLeft, :androidArrowDownRight, :androidArrowUpLeft, :androidArrowUpRight, :androidBattery,
75
+ :androidBook, :androidCalendar, :androidCall, :androidCamera, :androidChat, :androidCheckmark,
76
+ :androidClock, :androidClose, :androidContact, :androidContacts, :androidData, :androidDeveloper,
77
+ :androidDisplay, :androidDownload, :androidDropdown, :androidEarth, :androidFolder, :androidForums,
78
+ :androidFriends, :androidHand, :androidImage, :androidInbox, :androidInformation, :androidKeypad,
79
+ :androidLightbulb, :androidLocate, :androidLocation, :androidMail, :androidMicrophone, :androidMixer,
80
+ :androidMore, :androidNote, :androidPlaystore, :androidPrinter, :androidPromotion, :androidReminder,
81
+ :androidRemove, :androidSearch, :androidSend, :androidSettings, :androidShare, :androidSocial,
82
+ :androidSocialUser, :androidSort, :androidStar, :androidStopwatch, :androidStorage, :androidSystemBack,
83
+ :androidSystemHome, :androidSystemWindows, :androidTimer, :androidTrash, :androidVolume, :androidWifi,
84
+ :archive, :arrowDownA, :arrowDownB, :arrowDownC, :arrowExpand,
85
+ :arrowGraphDownLeft, :arrowGraphDownRight, :arrowGraphUpLeft, :arrowGraphUpRight, :arrowLeftA,
86
+ :arrowLeftB, :arrowLeftC, :arrowMove, :arrowResize, :arrowReturnLeft,
87
+ :arrowReturnRight, :arrowRightA, :arrowRightB, :arrowRightC, :arrowShrink,
88
+ :arrowSwap, :arrowUpA, :arrowUpB, :arrowUpC, :at, :bag, :batteryCharging, :batteryEmpty, :batteryFull, :batteryHalf,
89
+ :batteryLow, :beaker, :beer, :bluetooth, :bookmark, :briefcase, :bug, :calculator, :calendar, :camera,
90
+ :card, :chatbox, :chatboxWorking, :chatboxes, :chatbubble,
91
+ :chatbubbleWorking, :chatbubbles, :checkmark, :checkmarkCircled, :checkmarkRound,
92
+ :chevronDown, :chevronLeft, :chevronRight, :chevronUp, :clipboard,
93
+ :clock, :close, :closeCircled, :closeRound, :cloud, :code, :codeDownload, :codeWorking, :coffee, :compass,
94
+ :compose, :connectionBars, :contrast, :disc, :document, :documentText, :drag, :earth, :edit, :egg,
95
+ :eject, :email, :eye, :eyeDisabled, :female, :filing, :filmMarker, :flag, :flash, :flashOff,
96
+ :flask, :folder, :fork, :forkRepo, :forward, :gameControllerA, :gameControllerB, :gearA, :gearB, :grid,
97
+ :hammer, :headphone, :heart, :help, :helpBuoy, :helpCircled, :home, :icecream, :iconSocialGooglePlus, :iconSocialGooglePlusOutline,
98
+ :image, :images, :information, :informationCircled, :ionic,
99
+ :ios7Alarm, :ios7AlarmOutline, :ios7Albums, :ios7AlbumsOutline, :ios7ArrowBack,
100
+ :ios7ArrowDown, :ios7ArrowForward, :ios7ArrowLeft, :ios7ArrowRight, :ios7ArrowThinDown,
101
+ :ios7ArrowThinLeft, :ios7ArrowThinRight, :ios7ArrowThinUp, :ios7ArrowUp, :ios7At,
102
+ :ios7AtOutline, :ios7Bell, :ios7BellOutline, :ios7Bolt, :ios7BoltOutline,
103
+ :ios7Bookmarks, :ios7BookmarksOutline, :ios7Box, :ios7BoxOutline, :ios7Briefcase,
104
+ :ios7BriefcaseOutline, :ios7Browsers, :ios7BrowsersOutline, :ios7Calculator, :ios7CalculatorOutline,
105
+ :ios7Calendar, :ios7CalendarOutline, :ios7Camera, :ios7CameraOutline, :ios7Cart,
106
+ :ios7CartOutline, :ios7Chatboxes, :ios7ChatboxesOutline, :ios7Chatbubble, :ios7ChatbubbleOutline,
107
+ :ios7Checkmark, :ios7CheckmarkEmpty, :ios7CheckmarkOutline, :ios7CircleFilled, :ios7CircleOutline,
108
+ :ios7Clock, :ios7ClockOutline, :ios7Close, :ios7CloseEmpty, :ios7CloseOutline,
109
+ :ios7Cloud, :ios7CloudDownload, :ios7CloudDownloadOutline, :ios7CloudOutline, :ios7CloudUpload,
110
+ :ios7CloudUploadOutline, :ios7Cloudy, :ios7CloudyNight, :ios7CloudyNightOutline, :ios7CloudyOutline,
111
+ :ios7Cog, :ios7CogOutline, :ios7Compose, :ios7ComposeOutline, :ios7Contact,
112
+ :ios7ContactOutline, :ios7Copy, :ios7CopyOutline, :ios7Download, :ios7DownloadOutline,
113
+ :ios7Drag, :ios7Email, :ios7EmailOutline, :ios7Eye, :ios7EyeOutline,
114
+ :ios7Fastforward, :ios7FastforwardOutline, :ios7Filing, :ios7FilingOutline, :ios7Film,
115
+ :ios7FilmOutline, :ios7Flag, :ios7FlagOutline, :ios7Folder, :ios7FolderOutline,
116
+ :ios7Gear, :ios7GearOutline, :ios7Glasses, :ios7GlassesOutline, :ios7Heart,
117
+ :ios7HeartOutline, :ios7Help, :ios7HelpEmpty, :ios7HelpOutline, :ios7Infinite,
118
+ :ios7InfiniteOutline, :ios7Information, :ios7InformationEmpty, :ios7InformationOutline, :ios7IonicOutline,
119
+ :ios7Keypad, :ios7KeypadOutline, :ios7Lightbulb, :ios7LightbulbOutline, :ios7Location,
120
+ :ios7LocationOutline, :ios7Locked, :ios7LockedOutline, :ios7Medkit, :ios7MedkitOutline,
121
+ :ios7Mic, :ios7MicOff, :ios7MicOutline, :ios7Minus, :ios7MinusEmpty,
122
+ :ios7MinusOutline, :ios7Monitor, :ios7MonitorOutline, :ios7Moon, :ios7MoonOutline,
123
+ :ios7More, :ios7MoreOutline, :ios7MusicalNote, :ios7MusicalNotes, :ios7Navigate,
124
+ :ios7NavigateOutline, :ios7Paperplane, :ios7PaperplaneOutline, :ios7Partlysunny, :ios7PartlysunnyOutline,
125
+ :ios7Pause, :ios7PauseOutline, :ios7People, :ios7PeopleOutline, :ios7Person,
126
+ :ios7PersonOutline, :ios7Personadd, :ios7PersonaddOutline, :ios7Photos, :ios7PhotosOutline,
127
+ :ios7Pie, :ios7PieOutline, :ios7Play, :ios7PlayOutline, :ios7Plus,
128
+ :ios7PlusEmpty, :ios7PlusOutline, :ios7Pricetag, :ios7PricetagOutline, :ios7Printer,
129
+ :ios7PrinterOutline, :ios7Rainy, :ios7RainyOutline, :ios7Recording, :ios7RecordingOutline,
130
+ :ios7Redo, :ios7RedoOutline, :ios7Refresh, :ios7RefreshEmpty, :ios7RefreshOutline,
131
+ :ios7Reload, :ios7Rewind, :ios7RewindOutline, :ios7Search, :ios7SearchStrong,
132
+ :ios7Skipbackward, :ios7SkipbackwardOutline, :ios7Skipforward, :ios7SkipforwardOutline, :ios7Snowy,
133
+ :ios7Speedometer, :ios7SpeedometerOutline, :ios7Star, :ios7StarOutline, :ios7Stopwatch,
134
+ :ios7StopwatchOutline, :ios7Sunny, :ios7SunnyOutline, :ios7Telephone, :ios7TelephoneOutline,
135
+ :ios7Thunderstorm, :ios7ThunderstormOutline, :ios7Time, :ios7TimeOutline, :ios7Timer,
136
+ :ios7TimerOutline, :ios7Trash, :ios7TrashOutline, :ios7Undo, :ios7UndoOutline,
137
+ :ios7Unlocked, :ios7UnlockedOutline, :ios7Upload, :ios7UploadOutline, :ios7Videocam,
138
+ :ios7VideocamOutline, :ios7VolumeHigh, :ios7VolumeLow, :ios7Wineglass, :ios7WineglassOutline,
139
+ :ios7World, :ios7WorldOutline, :ipad, :iphone, :ipod,
140
+ :jet, :key, :knife, :laptop, :leaf, :levels, :lightbulb, :link, :loadA, :loadB,
141
+ :loadC, :loadD, :location, :locked, :logIn, :logOut, :loop, :magnet, :male, :man,
142
+ :map, :medkit, :micA, :micB, :micC, :minus, :minusCircled, :minusRound, :modelS, :monitor,
143
+ :more, :musicNote, :navicon, :naviconRound, :navigate, :noSmoking, :nuclear, :paperAirplane, :paperclip, :pause,
144
+ :person, :personAdd, :personStalker, :pieGraph, :pin, :pinpoint, :pizza, :plane, :play, :playstation,
145
+ :plus, :plusCircled, :plusRound, :pound, :power, :pricetag, :pricetags, :printer, :radioWaves, :record,
146
+ :refresh, :reply, :replyAll, :search, :settings, :share, :shuffle, :skipBackward, :skipForward, :socialAndroid,
147
+ :socialAndroidOutline, :socialApple, :socialAppleOutline, :socialBitcoin, :socialBitcoinOutline,
148
+ :socialBuffer, :socialBufferOutline, :socialDesignernews, :socialDesignernewsOutline, :socialDribbble,
149
+ :socialDribbbleOutline, :socialDropbox, :socialDropboxOutline, :socialFacebook, :socialFacebookOutline,
150
+ :socialFreebsdDevil, :socialGithub, :socialGithubOutline, :socialGoogleplus, :socialGoogleplusOutline,
151
+ :socialHackernews, :socialHackernewsOutline, :socialLinkedin, :socialLinkedinOutline, :socialPinterest,
152
+ :socialPinterestOutline, :socialReddit, :socialRedditOutline, :socialRss, :socialRssOutline,
153
+ :socialSkype, :socialSkypeOutline, :socialTumblr, :socialTumblrOutline, :socialTux,
154
+ :socialTwitter, :socialTwitterOutline, :socialVimeo, :socialVimeoOutline, :socialWindows,
155
+ :socialWindowsOutline, :socialWordpress, :socialWordpressOutline, :socialYahoo, :socialYahooOutline,
156
+ :socialYoutube, :socialYoutubeOutline, :speakerphone, :speedometer, :spoon,
157
+ :star, :statsBars, :steam, :stop, :thermometer, :thumbsdown, :thumbsup, :trashA, :trashB, :umbrella,
158
+ :unlocked, :upload, :usb, :videocamera, :volumeHigh, :volumeLow, :volumeMedium, :volumeMute, :waterdrop, :wifi,
159
+ :wineglass, :woman, :wrench, :xbox,
160
+ ],
161
+ zocial: [
162
+ :acrobat, :amazon, :android, :angellist, :aol, :appnet, :appstore, :bitbucket, :bitcoin, :blogger,
163
+ :buffer, :call, :cal, :cart, :chrome, :cloudapp, :creativecommons, :delicious, :digg, :disqus,
164
+ :dribbble, :dropbox, :drupal, :dwolla, :email, :eventasaurus, :eventbrite, :eventful, :evernote, :facebook,
165
+ :fivehundredpx, :flattr, :flickr, :forrst, :foursquare, :github, :gmail, :google, :googleplay, :googleplus,
166
+ :gowalla, :grooveshark, :guest, :html5, :ie, :instagram, :instapaper, :intensedebate, :itunes, :klout,
167
+ :lanyrd, :lastfm, :lego, :linkedin, :lkdto, :logmein, :macstore, :meetup, :myspace, :ninetyninedesigns,
168
+ :openid, :opentable, :paypal, :pinboard, :pinterest, :plancast, :plurk, :pocket, :podcast, :posterous,
169
+ :print, :quora, :reddit, :rss, :scribd, :skype, :smashing, :songkick, :soundcloud, :spotify,
170
+ :stackoverflow, :statusnet, :steam, :stripe, :stumbleupon, :tumblr, :twitter, :viadeo, :vimeo, :vk,
171
+ :weibo, :wikipedia, :windows, :wordpress, :xing, :yahoo, :ycombinator, :yelp, :youtube,
172
+ ]
173
+ }
174
+ end
175
+ end
176
+ end
@@ -0,0 +1,384 @@
1
+ module Motion
2
+ module Iconic
3
+ module Dummy
4
+ class FontAwesome < FAKFontAwesome
5
+ class << self
6
+ private
7
+
8
+ def dummy
9
+ starIconWithSize(nil)
10
+ glassIconWithSize(nil)
11
+ musicIconWithSize(nil)
12
+ searchIconWithSize(nil)
13
+ envelopeOIconWithSize(nil)
14
+ heartIconWithSize(nil)
15
+ starIconWithSize(nil)
16
+ starOIconWithSize(nil)
17
+ userIconWithSize(nil)
18
+ filmIconWithSize(nil)
19
+ thLargeIconWithSize(nil)
20
+ thIconWithSize(nil)
21
+ thListIconWithSize(nil)
22
+ checkIconWithSize(nil)
23
+ timesIconWithSize(nil)
24
+ searchPlusIconWithSize(nil)
25
+ searchMinusIconWithSize(nil)
26
+ powerOffIconWithSize(nil)
27
+ signalIconWithSize(nil)
28
+ cogIconWithSize(nil)
29
+ trashOIconWithSize(nil)
30
+ homeIconWithSize(nil)
31
+ fileOIconWithSize(nil)
32
+ clockOIconWithSize(nil)
33
+ roadIconWithSize(nil)
34
+ downloadIconWithSize(nil)
35
+ arrowCircleODownIconWithSize(nil)
36
+ arrowCircleOUpIconWithSize(nil)
37
+ inboxIconWithSize(nil)
38
+ playCircleOIconWithSize(nil)
39
+ repeatIconWithSize(nil)
40
+ refreshIconWithSize(nil)
41
+ listAltIconWithSize(nil)
42
+ lockIconWithSize(nil)
43
+ flagIconWithSize(nil)
44
+ headphonesIconWithSize(nil)
45
+ volumeOffIconWithSize(nil)
46
+ volumeDownIconWithSize(nil)
47
+ volumeUpIconWithSize(nil)
48
+ qrcodeIconWithSize(nil)
49
+ barcodeIconWithSize(nil)
50
+ tagIconWithSize(nil)
51
+ tagsIconWithSize(nil)
52
+ bookIconWithSize(nil)
53
+ bookmarkIconWithSize(nil)
54
+ printIconWithSize(nil)
55
+ cameraIconWithSize(nil)
56
+ fontIconWithSize(nil)
57
+ boldIconWithSize(nil)
58
+ italicIconWithSize(nil)
59
+ textHeightIconWithSize(nil)
60
+ textWidthIconWithSize(nil)
61
+ alignLeftIconWithSize(nil)
62
+ alignCenterIconWithSize(nil)
63
+ alignRightIconWithSize(nil)
64
+ alignJustifyIconWithSize(nil)
65
+ listIconWithSize(nil)
66
+ outdentIconWithSize(nil)
67
+ indentIconWithSize(nil)
68
+ videoCameraIconWithSize(nil)
69
+ pictureOIconWithSize(nil)
70
+ pencilIconWithSize(nil)
71
+ mapMarkerIconWithSize(nil)
72
+ adjustIconWithSize(nil)
73
+ tintIconWithSize(nil)
74
+ pencilSquareOIconWithSize(nil)
75
+ shareSquareOIconWithSize(nil)
76
+ checkSquareOIconWithSize(nil)
77
+ arrowsIconWithSize(nil)
78
+ stepBackwardIconWithSize(nil)
79
+ fastBackwardIconWithSize(nil)
80
+ backwardIconWithSize(nil)
81
+ playIconWithSize(nil)
82
+ pauseIconWithSize(nil)
83
+ stopIconWithSize(nil)
84
+ forwardIconWithSize(nil)
85
+ fastForwardIconWithSize(nil)
86
+ stepForwardIconWithSize(nil)
87
+ ejectIconWithSize(nil)
88
+ chevronLeftIconWithSize(nil)
89
+ chevronRightIconWithSize(nil)
90
+ plusCircleIconWithSize(nil)
91
+ minusCircleIconWithSize(nil)
92
+ timesCircleIconWithSize(nil)
93
+ checkCircleIconWithSize(nil)
94
+ questionCircleIconWithSize(nil)
95
+ infoCircleIconWithSize(nil)
96
+ crosshairsIconWithSize(nil)
97
+ timesCircleOIconWithSize(nil)
98
+ checkCircleOIconWithSize(nil)
99
+ banIconWithSize(nil)
100
+ arrowLeftIconWithSize(nil)
101
+ arrowRightIconWithSize(nil)
102
+ arrowUpIconWithSize(nil)
103
+ arrowDownIconWithSize(nil)
104
+ shareIconWithSize(nil)
105
+ expandIconWithSize(nil)
106
+ compressIconWithSize(nil)
107
+ plusIconWithSize(nil)
108
+ minusIconWithSize(nil)
109
+ asteriskIconWithSize(nil)
110
+ exclamationCircleIconWithSize(nil)
111
+ giftIconWithSize(nil)
112
+ leafIconWithSize(nil)
113
+ fireIconWithSize(nil)
114
+ eyeIconWithSize(nil)
115
+ eyeSlashIconWithSize(nil)
116
+ exclamationTriangleIconWithSize(nil)
117
+ planeIconWithSize(nil)
118
+ calendarIconWithSize(nil)
119
+ randomIconWithSize(nil)
120
+ commentIconWithSize(nil)
121
+ magnetIconWithSize(nil)
122
+ chevronUpIconWithSize(nil)
123
+ chevronDownIconWithSize(nil)
124
+ retweetIconWithSize(nil)
125
+ shoppingCartIconWithSize(nil)
126
+ folderIconWithSize(nil)
127
+ folderOpenIconWithSize(nil)
128
+ arrowsVIconWithSize(nil)
129
+ arrowsHIconWithSize(nil)
130
+ barChartOIconWithSize(nil)
131
+ twitterSquareIconWithSize(nil)
132
+ facebookSquareIconWithSize(nil)
133
+ cameraRetroIconWithSize(nil)
134
+ keyIconWithSize(nil)
135
+ cogsIconWithSize(nil)
136
+ commentsIconWithSize(nil)
137
+ thumbsOUpIconWithSize(nil)
138
+ thumbsODownIconWithSize(nil)
139
+ starHalfIconWithSize(nil)
140
+ heartOIconWithSize(nil)
141
+ signOutIconWithSize(nil)
142
+ linkedinSquareIconWithSize(nil)
143
+ thumbTackIconWithSize(nil)
144
+ externalLinkIconWithSize(nil)
145
+ signInIconWithSize(nil)
146
+ trophyIconWithSize(nil)
147
+ githubSquareIconWithSize(nil)
148
+ uploadIconWithSize(nil)
149
+ lemonOIconWithSize(nil)
150
+ phoneIconWithSize(nil)
151
+ squareOIconWithSize(nil)
152
+ bookmarkOIconWithSize(nil)
153
+ phoneSquareIconWithSize(nil)
154
+ twitterIconWithSize(nil)
155
+ facebookIconWithSize(nil)
156
+ githubIconWithSize(nil)
157
+ unlockIconWithSize(nil)
158
+ creditCardIconWithSize(nil)
159
+ rssIconWithSize(nil)
160
+ hddOIconWithSize(nil)
161
+ bullhornIconWithSize(nil)
162
+ bellIconWithSize(nil)
163
+ certificateIconWithSize(nil)
164
+ handORightIconWithSize(nil)
165
+ handOLeftIconWithSize(nil)
166
+ handOUpIconWithSize(nil)
167
+ handODownIconWithSize(nil)
168
+ arrowCircleLeftIconWithSize(nil)
169
+ arrowCircleRightIconWithSize(nil)
170
+ arrowCircleUpIconWithSize(nil)
171
+ arrowCircleDownIconWithSize(nil)
172
+ globeIconWithSize(nil)
173
+ wrenchIconWithSize(nil)
174
+ tasksIconWithSize(nil)
175
+ filterIconWithSize(nil)
176
+ briefcaseIconWithSize(nil)
177
+ arrowsAltIconWithSize(nil)
178
+ usersIconWithSize(nil)
179
+ linkIconWithSize(nil)
180
+ cloudIconWithSize(nil)
181
+ flaskIconWithSize(nil)
182
+ scissorsIconWithSize(nil)
183
+ filesOIconWithSize(nil)
184
+ paperclipIconWithSize(nil)
185
+ floppyOIconWithSize(nil)
186
+ squareIconWithSize(nil)
187
+ barsIconWithSize(nil)
188
+ listUlIconWithSize(nil)
189
+ listOlIconWithSize(nil)
190
+ strikethroughIconWithSize(nil)
191
+ underlineIconWithSize(nil)
192
+ tableIconWithSize(nil)
193
+ magicIconWithSize(nil)
194
+ truckIconWithSize(nil)
195
+ pinterestIconWithSize(nil)
196
+ pinterestSquareIconWithSize(nil)
197
+ googlePlusSquareIconWithSize(nil)
198
+ googlePlusIconWithSize(nil)
199
+ moneyIconWithSize(nil)
200
+ caretDownIconWithSize(nil)
201
+ caretUpIconWithSize(nil)
202
+ caretLeftIconWithSize(nil)
203
+ caretRightIconWithSize(nil)
204
+ columnsIconWithSize(nil)
205
+ sortIconWithSize(nil)
206
+ sortAscIconWithSize(nil)
207
+ sortDescIconWithSize(nil)
208
+ envelopeIconWithSize(nil)
209
+ linkedinIconWithSize(nil)
210
+ undoIconWithSize(nil)
211
+ gavelIconWithSize(nil)
212
+ tachometerIconWithSize(nil)
213
+ commentOIconWithSize(nil)
214
+ commentsOIconWithSize(nil)
215
+ boltIconWithSize(nil)
216
+ sitemapIconWithSize(nil)
217
+ umbrellaIconWithSize(nil)
218
+ clipboardIconWithSize(nil)
219
+ lightbulbOIconWithSize(nil)
220
+ exchangeIconWithSize(nil)
221
+ cloudDownloadIconWithSize(nil)
222
+ cloudUploadIconWithSize(nil)
223
+ userMdIconWithSize(nil)
224
+ stethoscopeIconWithSize(nil)
225
+ suitcaseIconWithSize(nil)
226
+ bellOIconWithSize(nil)
227
+ coffeeIconWithSize(nil)
228
+ cutleryIconWithSize(nil)
229
+ fileTextOIconWithSize(nil)
230
+ buildingOIconWithSize(nil)
231
+ hospitalOIconWithSize(nil)
232
+ ambulanceIconWithSize(nil)
233
+ medkitIconWithSize(nil)
234
+ fighterJetIconWithSize(nil)
235
+ beerIconWithSize(nil)
236
+ hSquareIconWithSize(nil)
237
+ plusSquareIconWithSize(nil)
238
+ angleDoubleLeftIconWithSize(nil)
239
+ angleDoubleRightIconWithSize(nil)
240
+ angleDoubleUpIconWithSize(nil)
241
+ angleDoubleDownIconWithSize(nil)
242
+ angleLeftIconWithSize(nil)
243
+ angleRightIconWithSize(nil)
244
+ angleUpIconWithSize(nil)
245
+ angleDownIconWithSize(nil)
246
+ desktopIconWithSize(nil)
247
+ laptopIconWithSize(nil)
248
+ tabletIconWithSize(nil)
249
+ mobileIconWithSize(nil)
250
+ circleOIconWithSize(nil)
251
+ quoteLeftIconWithSize(nil)
252
+ quoteRightIconWithSize(nil)
253
+ spinnerIconWithSize(nil)
254
+ circleIconWithSize(nil)
255
+ replyIconWithSize(nil)
256
+ githubAltIconWithSize(nil)
257
+ folderOIconWithSize(nil)
258
+ folderOpenOIconWithSize(nil)
259
+ smileOIconWithSize(nil)
260
+ frownOIconWithSize(nil)
261
+ mehOIconWithSize(nil)
262
+ gamepadIconWithSize(nil)
263
+ keyboardOIconWithSize(nil)
264
+ flagOIconWithSize(nil)
265
+ flagCheckeredIconWithSize(nil)
266
+ terminalIconWithSize(nil)
267
+ codeIconWithSize(nil)
268
+ replyAllIconWithSize(nil)
269
+ mailReplyAllIconWithSize(nil)
270
+ starHalfOIconWithSize(nil)
271
+ locationArrowIconWithSize(nil)
272
+ cropIconWithSize(nil)
273
+ codeForkIconWithSize(nil)
274
+ chainBrokenIconWithSize(nil)
275
+ questionIconWithSize(nil)
276
+ infoIconWithSize(nil)
277
+ exclamationIconWithSize(nil)
278
+ superscriptIconWithSize(nil)
279
+ subscriptIconWithSize(nil)
280
+ eraserIconWithSize(nil)
281
+ puzzlePieceIconWithSize(nil)
282
+ microphoneIconWithSize(nil)
283
+ microphoneSlashIconWithSize(nil)
284
+ shieldIconWithSize(nil)
285
+ calendarOIconWithSize(nil)
286
+ fireExtinguisherIconWithSize(nil)
287
+ rocketIconWithSize(nil)
288
+ maxcdnIconWithSize(nil)
289
+ chevronCircleLeftIconWithSize(nil)
290
+ chevronCircleRightIconWithSize(nil)
291
+ chevronCircleUpIconWithSize(nil)
292
+ chevronCircleDownIconWithSize(nil)
293
+ html5IconWithSize(nil)
294
+ css3IconWithSize(nil)
295
+ anchorIconWithSize(nil)
296
+ unlockAltIconWithSize(nil)
297
+ bullseyeIconWithSize(nil)
298
+ ellipsisHIconWithSize(nil)
299
+ ellipsisVIconWithSize(nil)
300
+ rssSquareIconWithSize(nil)
301
+ playCircleIconWithSize(nil)
302
+ ticketIconWithSize(nil)
303
+ minusSquareIconWithSize(nil)
304
+ minusSquareOIconWithSize(nil)
305
+ levelUpIconWithSize(nil)
306
+ levelDownIconWithSize(nil)
307
+ checkSquareIconWithSize(nil)
308
+ pencilSquareIconWithSize(nil)
309
+ externalLinkSquareIconWithSize(nil)
310
+ shareSquareIconWithSize(nil)
311
+ compassIconWithSize(nil)
312
+ caretSquareODownIconWithSize(nil)
313
+ caretSquareOUpIconWithSize(nil)
314
+ caretSquareORightIconWithSize(nil)
315
+ eurIconWithSize(nil)
316
+ gbpIconWithSize(nil)
317
+ usdIconWithSize(nil)
318
+ inrIconWithSize(nil)
319
+ jpyIconWithSize(nil)
320
+ rubIconWithSize(nil)
321
+ krwIconWithSize(nil)
322
+ btcIconWithSize(nil)
323
+ fileIconWithSize(nil)
324
+ fileTextIconWithSize(nil)
325
+ sortAlphaAscIconWithSize(nil)
326
+ sortAlphaDescIconWithSize(nil)
327
+ sortAmountAscIconWithSize(nil)
328
+ sortAmountDescIconWithSize(nil)
329
+ sortNumericAscIconWithSize(nil)
330
+ sortNumericDescIconWithSize(nil)
331
+ thumbsUpIconWithSize(nil)
332
+ thumbsDownIconWithSize(nil)
333
+ youtubeSquareIconWithSize(nil)
334
+ youtubeIconWithSize(nil)
335
+ xingIconWithSize(nil)
336
+ xingSquareIconWithSize(nil)
337
+ youtubePlayIconWithSize(nil)
338
+ dropboxIconWithSize(nil)
339
+ stackOverflowIconWithSize(nil)
340
+ instagramIconWithSize(nil)
341
+ flickrIconWithSize(nil)
342
+ adnIconWithSize(nil)
343
+ bitbucketIconWithSize(nil)
344
+ bitbucketSquareIconWithSize(nil)
345
+ tumblrIconWithSize(nil)
346
+ tumblrSquareIconWithSize(nil)
347
+ longArrowDownIconWithSize(nil)
348
+ longArrowUpIconWithSize(nil)
349
+ longArrowLeftIconWithSize(nil)
350
+ longArrowRightIconWithSize(nil)
351
+ appleIconWithSize(nil)
352
+ windowsIconWithSize(nil)
353
+ androidIconWithSize(nil)
354
+ linuxIconWithSize(nil)
355
+ dribbbleIconWithSize(nil)
356
+ skypeIconWithSize(nil)
357
+ foursquareIconWithSize(nil)
358
+ trelloIconWithSize(nil)
359
+ femaleIconWithSize(nil)
360
+ maleIconWithSize(nil)
361
+ gittipIconWithSize(nil)
362
+ sunOIconWithSize(nil)
363
+ moonOIconWithSize(nil)
364
+ archiveIconWithSize(nil)
365
+ bugIconWithSize(nil)
366
+ vkIconWithSize(nil)
367
+ weiboIconWithSize(nil)
368
+ renrenIconWithSize(nil)
369
+ pagelinesIconWithSize(nil)
370
+ stackExchangeIconWithSize(nil)
371
+ arrowCircleORightIconWithSize(nil)
372
+ arrowCircleOLeftIconWithSize(nil)
373
+ caretSquareOLeftIconWithSize(nil)
374
+ dotCircleOIconWithSize(nil)
375
+ wheelchairIconWithSize(nil)
376
+ vimeoSquareIconWithSize(nil)
377
+ tryIconWithSize(nil)
378
+ plusSquareOIconWithSize(nil)
379
+ end
380
+ end
381
+ end
382
+ end
383
+ end
384
+ end