oulipo 0.1.0 → 0.1.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/Gemfile +8 -0
- data/Gemfile.lock +24 -0
- data/README.md +2 -2
- data/Rakefile +2 -0
- data/oulipo.gemspec +23 -0
- metadata +11 -4
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
oulipo (0.1.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: http://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.1.2)
|
10
|
+
rspec (2.6.0)
|
11
|
+
rspec-core (~> 2.6.0)
|
12
|
+
rspec-expectations (~> 2.6.0)
|
13
|
+
rspec-mocks (~> 2.6.0)
|
14
|
+
rspec-core (2.6.4)
|
15
|
+
rspec-expectations (2.6.0)
|
16
|
+
diff-lcs (~> 1.1.2)
|
17
|
+
rspec-mocks (2.6.0)
|
18
|
+
|
19
|
+
PLATFORMS
|
20
|
+
ruby
|
21
|
+
|
22
|
+
DEPENDENCIES
|
23
|
+
oulipo!
|
24
|
+
rspec
|
data/README.md
CHANGED
@@ -30,9 +30,9 @@ In the following snippet of a poem, every letter of the alphabet except 'e' is u
|
|
30
30
|
|
31
31
|
In contrast, a pangram uses all the letters of the alphabet (often seen jumping lazy dogs):
|
32
32
|
|
33
|
-
|
33
|
+
sentence = 'Big fjords vex quick waltz nymph.'
|
34
34
|
|
35
|
-
|
35
|
+
Oulipo.pangram?(sentence) # => true
|
36
36
|
|
37
37
|
## Univocalims
|
38
38
|
|
data/Rakefile
CHANGED
data/oulipo.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path('../lib', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = "oulipo"
|
6
|
+
s.version = "0.1.1"
|
7
|
+
s.date = Time.now.strftime('%Y-%m-%d')
|
8
|
+
s.homepage = "http://github.com/Aupajo/oulipo"
|
9
|
+
s.email = "pete@metanation.com"
|
10
|
+
s.authors = [ "Pete Nicholls" ]
|
11
|
+
s.has_rdoc = false
|
12
|
+
|
13
|
+
s.summary = "Constrained writing with Ruby."
|
14
|
+
s.description = 'Oulipo gives you tools to write constrained stories and poems with Ruby.'
|
15
|
+
|
16
|
+
s.files = `git ls-files`.split("\n")
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
|
21
|
+
# s.add_dependency "gemname", "< 3.0.0"
|
22
|
+
|
23
|
+
end
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: oulipo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
5
|
+
version: 0.1.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Pete Nicholls
|
@@ -23,10 +23,13 @@ extensions: []
|
|
23
23
|
extra_rdoc_files: []
|
24
24
|
|
25
25
|
files:
|
26
|
+
- Gemfile
|
27
|
+
- Gemfile.lock
|
28
|
+
- LICENSE
|
26
29
|
- README.md
|
27
30
|
- Rakefile
|
28
|
-
- LICENSE
|
29
31
|
- lib/oulipo.rb
|
32
|
+
- oulipo.gemspec
|
30
33
|
- spec/chaterisms_spec.rb
|
31
34
|
- spec/lipograms_spec.rb
|
32
35
|
- spec/palindromes_spec.rb
|
@@ -60,5 +63,9 @@ rubygems_version: 1.6.2
|
|
60
63
|
signing_key:
|
61
64
|
specification_version: 3
|
62
65
|
summary: Constrained writing with Ruby.
|
63
|
-
test_files:
|
64
|
-
|
66
|
+
test_files:
|
67
|
+
- spec/chaterisms_spec.rb
|
68
|
+
- spec/lipograms_spec.rb
|
69
|
+
- spec/palindromes_spec.rb
|
70
|
+
- spec/spec_helper.rb
|
71
|
+
- spec/univocalisms_spec.rb
|