moby 1.0.4 → 1.0.5

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 (6) hide show
  1. data/.gitignore +19 -2
  2. data/README.md +2 -1
  3. data/lib/moby/version.rb +1 -1
  4. metadata +3 -6
  5. data/.rvmrc +0 -83
  6. data/Gemfile.lock +0 -18
data/.gitignore CHANGED
@@ -1,3 +1,20 @@
1
- *.swp
1
+ *.gem
2
+ *.rbc
2
3
  *.swo
3
- pkg/*
4
+ *.swp
5
+ .bundle
6
+ .config
7
+ .rvmrc
8
+ .yardoc
9
+ Gemfile.lock
10
+ InstalledFiles
11
+ _yardoc
12
+ coverage
13
+ doc/
14
+ lib/bundler/man
15
+ pkg
16
+ rdoc
17
+ spec/reports
18
+ test/tmp
19
+ test/version_tmp
20
+ tmp
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  Moby
2
2
  ====
3
- ![Build Status](https://secure.travis-ci.org/drichert/moby.png)
3
+ [![Build Status](https://secure.travis-ci.org/drichert/moby.png)](http://travis-ci.org/drichert/moby)
4
+ [![Dependency Status](https://gemnasium.com/drichert/moby.png)](https://gemnasium.com/drichert/moby)
4
5
 
5
6
 
6
7
  Ruby interface for [Moby Project](http://en.wikipedia.org/wiki/Moby_Project)
@@ -1,3 +1,3 @@
1
1
  module Moby
2
- VERSION = "1.0.4"
2
+ VERSION = "1.0.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-02-01 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
16
- requirement: &8757020 !ruby/object:Gem::Requirement
16
+ requirement: &8688200 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *8757020
24
+ version_requirements: *8688200
25
25
  description: Ruby interface for the world's largest free phonetic database
26
26
  email:
27
27
  - dan.richert@gmail.com
@@ -30,10 +30,8 @@ extensions: []
30
30
  extra_rdoc_files: []
31
31
  files:
32
32
  - .gitignore
33
- - .rvmrc
34
33
  - .travis.yml
35
34
  - Gemfile
36
- - Gemfile.lock
37
35
  - LICENSE
38
36
  - README.md
39
37
  - Rakefile
@@ -72,4 +70,3 @@ signing_key:
72
70
  specification_version: 3
73
71
  summary: Ruby interface for Moby wordlists
74
72
  test_files: []
75
- has_rdoc:
data/.rvmrc DELETED
@@ -1,83 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- # This is an RVM Project .rvmrc file, used to automatically load the ruby
4
- # development environment upon cd'ing into the directory
5
-
6
- # First we specify our desired <ruby>[@<gemset>], the @gemset name is optional,
7
- # Only full ruby name is supported here, for short names use:
8
- # echo "rvm use 1.9.2" > .rvmrc
9
- environment_id="ruby-1.9.2-p290@moby"
10
-
11
- #
12
- # Uncomment the following lines if you want to verify rvm version per project
13
- #
14
- # rvmrc_rvm_version="1.10.2" # 1.10.1 seams as a safe start
15
- # eval "$(echo ${rvm_version}.${rvmrc_rvm_version} | awk -F. '{print "[[ "$1*65536+$2*256+$3" -ge "$4*65536+$5*256+$6" ]]"}' )" || {
16
- # echo "This .rvmrc file requires at least RVM ${rvmrc_rvm_version}, aborting loading."
17
- # return 1
18
- # }
19
- #
20
-
21
- #
22
- # Uncomment following line if you want options to be set only for given project.
23
- #
24
- # PROJECT_JRUBY_OPTS=( --1.9 )
25
- #
26
- # The variable PROJECT_JRUBY_OPTS requires the following to be run in shell:
27
- #
28
- # chmod +x ${rvm_path}/hooks/after_use_jruby_opts
29
- #
30
-
31
- #
32
- # First we attempt to load the desired environment directly from the environment
33
- # file. This is very fast and efficient compared to running through the entire
34
- # CLI and selector. If you want feedback on which environment was used then
35
- # insert the word 'use' after --create as this triggers verbose mode.
36
- #
37
- if [[ -d "${rvm_path:-$HOME/.rvm}/environments" \
38
- && -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]]
39
- then
40
- \. "${rvm_path:-$HOME/.rvm}/environments/$environment_id"
41
-
42
- if [[ -s "${rvm_path:-$HOME/.rvm}/hooks/after_use" ]]
43
- then
44
- . "${rvm_path:-$HOME/.rvm}/hooks/after_use"
45
- fi
46
- else
47
- # If the environment file has not yet been created, use the RVM CLI to select.
48
- if ! rvm --create "$environment_id"
49
- then
50
- echo "Failed to create RVM environment '${environment_id}'."
51
- return 1
52
- fi
53
- fi
54
-
55
- #
56
- # If you use an RVM gemset file to install a list of gems (*.gems), you can have
57
- # it be automatically loaded. Uncomment the following and adjust the filename if
58
- # necessary.
59
- #
60
- # filename=".gems"
61
- # if [[ -s "$filename" ]]
62
- # then
63
- # rvm gemset import "$filename" | grep -v already | grep -v listed | grep -v complete | sed '/^$/d'
64
- # fi
65
-
66
- # If you use bundler, this might be useful to you:
67
- # if [[ -s Gemfile ]] && ! command -v bundle >/dev/null
68
- # then
69
- # printf "%b" "The rubygem 'bundler' is not installed. Installing it now.\n"
70
- # gem install bundler
71
- # fi
72
- # if [[ -s Gemfile ]] && command -v bundle
73
- # then
74
- # bundle install
75
- # fi
76
-
77
- if [[ $- == *i* ]] # check for interactive shells
78
- then
79
- echo "Using: $(tput setaf 2)$GEM_HOME$(tput sgr0)" # show the user the ruby and gemset they are using in green
80
- else
81
- echo "Using: $GEM_HOME" # don't use colors in interactive shells
82
- fi
83
-
@@ -1,18 +0,0 @@
1
- GEM
2
- remote: http://rubygems.org/
3
- specs:
4
- diff-lcs (1.1.3)
5
- rspec (2.8.0)
6
- rspec-core (~> 2.8.0)
7
- rspec-expectations (~> 2.8.0)
8
- rspec-mocks (~> 2.8.0)
9
- rspec-core (2.8.0)
10
- rspec-expectations (2.8.0)
11
- diff-lcs (~> 1.1.2)
12
- rspec-mocks (2.8.0)
13
-
14
- PLATFORMS
15
- ruby
16
-
17
- DEPENDENCIES
18
- rspec