benschwarz-smoke 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +11 -5
- data/Rakefile +1 -1
- data/VERSION.yml +2 -2
- data/dependencies +7 -0
- metadata +2 -1
data/README.markdown
CHANGED
@@ -1,11 +1,16 @@
|
|
1
1
|
# smoke
|
2
2
|
|
3
|
-
smoke is a Ruby based DSL that allows you to
|
4
|
-
|
5
|
-
and
|
3
|
+
smoke is a Ruby based DSL that allows you to query web services such as YQL, RSS / Atom and JSON or XML in an elegant manner.
|
4
|
+
|
5
|
+
These "services" can then be re-represented, sorted and filtered. Data can be collected from multiple sources, sorted via a common property, chopped up and refried.
|
6
|
+
|
7
|
+
Then you can output as a plain ruby object (or JSON)
|
6
8
|
|
7
9
|
## Examples of use
|
8
|
-
|
10
|
+
|
11
|
+
* The `examples` directory has something to get you running straight away
|
12
|
+
* I powered [my entire site](http://www.germanforblack.com) [using smoke](http://github.com/benschwarz/benschwarz-site/blob/44de70463c744d821d3ffd2cf940e6d3e415fbdd/lib/stream.rb), until further documentation exists, this is probably a good place to start.
|
13
|
+
* Read further details in the [rdoc documentation](http://rdoc.info/projects/benschwarz/smoke) or [the wiki](http://wiki.github.com/benschwarz/smoke)
|
9
14
|
|
10
15
|
## Media
|
11
16
|
|
@@ -15,7 +20,7 @@ I powered [my entire site](http://www.germanforblack.com) [using smoke](http://g
|
|
15
20
|
|
16
21
|
## The concept
|
17
22
|
|
18
|
-
The concept comes from using [Yahoo Pipes](http://pipes.yahoo.com) to make
|
23
|
+
The concept comes from using [Yahoo Pipes](http://pipes.yahoo.com) to make web based mash ups: Get a list of tv shows for my torrent client, compile a recipe book or make tools to give me a list of albums that artists in my music library are about to be released.
|
19
24
|
|
20
25
|
## How or what to contribute
|
21
26
|
|
@@ -79,6 +84,7 @@ Integrity [is running for smoke](http://integrity.ffolio.net/smoke)
|
|
79
84
|
|
80
85
|
|
81
86
|
#### For wiki pages (docs, later)
|
87
|
+
* Document all sources with their irrespective differential methods
|
82
88
|
* How to use `path`
|
83
89
|
* YQL Definitions
|
84
90
|
* Tranformations
|
data/Rakefile
CHANGED
@@ -10,7 +10,7 @@ begin
|
|
10
10
|
gem.email = "ben.schwarz@gmail.com"
|
11
11
|
gem.homepage = "http://github.com/benschwarz/smoke"
|
12
12
|
gem.authors = ["Ben Schwarz"]
|
13
|
-
gem.files = FileList['lib/**/*.rb', 'rdoc/**/*', '[A-Z]*', 'spec/**/*', 'vendor/**/*'].to_a
|
13
|
+
gem.files = FileList['dependencies', 'lib/**/*.rb', 'rdoc/**/*', '[A-Z]*', 'spec/**/*', 'vendor/**/*'].to_a
|
14
14
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
15
|
end
|
16
16
|
rescue LoadError
|
data/VERSION.yml
CHANGED
data/dependencies
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
dependencies git://github.com/djanowski/dependencies.git
|
2
|
+
crack git://github.com/jnunemaker/crack.git
|
3
|
+
simple-rss git://github.com/cardmagic/simple-rss.git
|
4
|
+
fakeweb git://github.com/chrisk/fakeweb.git
|
5
|
+
rest-client git://github.com/adamwiggins/rest-client.git
|
6
|
+
moneta git://github.com/benschwarz/moneta.git
|
7
|
+
json 1.1.3
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: benschwarz-smoke
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Schwarz
|
@@ -23,6 +23,7 @@ extra_rdoc_files:
|
|
23
23
|
- README.markdown
|
24
24
|
- LICENSE
|
25
25
|
files:
|
26
|
+
- dependencies
|
26
27
|
- lib/core_ext/hash.rb
|
27
28
|
- lib/core_ext/string.rb
|
28
29
|
- lib/smoke/cache.rb
|