envious 0.3.0 → 0.3.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 (3) hide show
  1. data/envious.gemspec +2 -4
  2. metadata +5 -29
  3. data/spec/spec_helper.rb +0 -17
@@ -1,16 +1,14 @@
1
1
  Gem::Specification.new do |gem|
2
2
  gem.name = "envious"
3
- gem.version = "0.3.0"
3
+ gem.version = "0.3.1"
4
4
  gem.authors = ["Ryan Nielson"]
5
5
  gem.email = ["ryan.nielson@gmail.com"]
6
6
  gem.description = %q{Easy Ruby on Rails application and environment configuration.}
7
7
  gem.summary = %q{Easy Ruby on Rails application and environment configuration using YAML and ENV.}
8
8
  gem.homepage = "http://github.com/ryannielson/envious"
9
9
 
10
- gem.add_dependency "rails", "~> 3.0"
10
+ gem.add_dependency "rails", ">= 3.0"
11
11
 
12
- gem.add_development_dependency "rspec", "~> 2.0"
13
-
14
12
  gem.files = `git ls-files`.split($/)
15
13
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
16
14
  gem.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: envious
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,14 +9,14 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-19 00:00:00.000000000 Z
12
+ date: 2013-06-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - ~>
19
+ - - ! '>='
20
20
  - !ruby/object:Gem::Version
21
21
  version: '3.0'
22
22
  type: :runtime
@@ -24,25 +24,9 @@ dependencies:
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
- - - ~>
27
+ - - ! '>='
28
28
  - !ruby/object:Gem::Version
29
29
  version: '3.0'
30
- - !ruby/object:Gem::Dependency
31
- name: rspec
32
- requirement: !ruby/object:Gem::Requirement
33
- none: false
34
- requirements:
35
- - - ~>
36
- - !ruby/object:Gem::Version
37
- version: '2.0'
38
- type: :development
39
- prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ~>
44
- - !ruby/object:Gem::Version
45
- version: '2.0'
46
30
  description: Easy Ruby on Rails application and environment configuration.
47
31
  email:
48
32
  - ryan.nielson@gmail.com
@@ -63,7 +47,6 @@ files:
63
47
  - lib/generators/envious/templates/environment_vars.yml
64
48
  - lib/tasks/cloud66.rake
65
49
  - lib/tasks/heroku.rake
66
- - spec/spec_helper.rb
67
50
  homepage: http://github.com/ryannielson/envious
68
51
  licenses: []
69
52
  post_install_message:
@@ -76,18 +59,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
59
  - - ! '>='
77
60
  - !ruby/object:Gem::Version
78
61
  version: '0'
79
- segments:
80
- - 0
81
- hash: -910274445455390227
82
62
  required_rubygems_version: !ruby/object:Gem::Requirement
83
63
  none: false
84
64
  requirements:
85
65
  - - ! '>='
86
66
  - !ruby/object:Gem::Version
87
67
  version: '0'
88
- segments:
89
- - 0
90
- hash: -910274445455390227
91
68
  requirements: []
92
69
  rubyforge_project:
93
70
  rubygems_version: 1.8.24
@@ -95,5 +72,4 @@ signing_key:
95
72
  specification_version: 3
96
73
  summary: Easy Ruby on Rails application and environment configuration using YAML and
97
74
  ENV.
98
- test_files:
99
- - spec/spec_helper.rb
75
+ test_files: []
@@ -1,17 +0,0 @@
1
- # This file was generated by the `rspec --init` command. Conventionally, all
2
- # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
- # Require this file using `require "spec_helper"` to ensure that it is only
4
- # loaded once.
5
- #
6
- # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
7
- RSpec.configure do |config|
8
- config.treat_symbols_as_metadata_keys_with_true_values = true
9
- config.run_all_when_everything_filtered = true
10
- config.filter_run :focus
11
-
12
- # Run specs in random order to surface order dependencies. If you find an
13
- # order dependency and want to debug it, you can fix the order by providing
14
- # the seed, which is printed after each run.
15
- # --seed 1234
16
- config.order = 'random'
17
- end