harmony 0.5 → 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.
Files changed (4) hide show
  1. data/README.md +10 -9
  2. data/harmony.gemspec +1 -2
  3. data/lib/harmony.rb +1 -1
  4. metadata +3 -13
data/README.md CHANGED
@@ -26,15 +26,6 @@ Summary
26
26
 
27
27
  Harmony provides a simple DSL to execute javascript + DOM code within ruby.
28
28
 
29
- Install
30
- -------
31
-
32
- # manually install dependencies until rubygems issue is resolved
33
- gem install stackdeck
34
- gem install johnson -v "2.0.0.pre0"
35
-
36
- gem install harmony
37
-
38
29
  Examples
39
30
  --------
40
31
 
@@ -114,6 +105,16 @@ Use `Harmony::Page.fetch(uri)` to create a page from a remote document.
114
105
 
115
106
  `fetch` also accepts "file://" uris.
116
107
 
108
+ Install
109
+ -------
110
+
111
+ # There's a gem dependency bug in rubygems currently, so we'll have to
112
+ # install dependencies manually. This will be fixed soon.
113
+ gem install stackdeck
114
+ gem install johnson -v "2.0.0.pre0"
115
+
116
+ gem install harmony
117
+
117
118
  Acknowledgement
118
119
  ---------------
119
120
 
data/harmony.gemspec CHANGED
@@ -3,7 +3,7 @@ require 'lib/harmony'
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "harmony"
5
5
  s.summary = "Javascript + DOM in your ruby, the simple way"
6
- s.description = "yo dawg, i heard you liked developing web apps while using ruby on the cmd line, so i added javascript and a DOM in your ruby so you could js the dom without browser while you code in your editor"
6
+ s.description = "Javascript + DOM in your ruby, the simple way."
7
7
  s.author = "mynyml"
8
8
  s.email = "mynyml@gmail.com"
9
9
  s.homepage = "http://github.com/mynyml/harmony"
@@ -13,6 +13,5 @@ Gem::Specification.new do |s|
13
13
  s.files = File.read("Manifest").strip.split("\n")
14
14
 
15
15
  s.add_dependency 'johnson', '2.0.0.pre0'
16
- s.add_dependency 'stackdeck' #johnson dependency
17
16
  s.add_development_dependency 'minitest'
18
17
  end
data/lib/harmony.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Harmony
2
- VERSION = '0.5'
2
+ VERSION = '0.5.1'
3
3
 
4
4
  autoload :Page, 'harmony/page'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: harmony
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
  - mynyml
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-02-11 00:00:00 +01:00
12
+ date: 2010-02-11 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -22,16 +22,6 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: 2.0.0.pre0
24
24
  version:
25
- - !ruby/object:Gem::Dependency
26
- name: stackdeck
27
- type: :runtime
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: "0"
34
- version:
35
25
  - !ruby/object:Gem::Dependency
36
26
  name: minitest
37
27
  type: :development
@@ -42,7 +32,7 @@ dependencies:
42
32
  - !ruby/object:Gem::Version
43
33
  version: "0"
44
34
  version:
45
- description: yo dawg, i heard you liked developing web apps while using ruby on the cmd line, so i added javascript and a DOM in your ruby so you could js the dom without browser while you code in your editor
35
+ description: Javascript + DOM in your ruby, the simple way.
46
36
  email: mynyml@gmail.com
47
37
  executables: []
48
38