phrase 0.0.1 → 0.1

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -1,9 +1,11 @@
1
1
  source :rubygems
2
2
 
3
3
  gem 'json'
4
+ gem "activesupport", :require => "active_support"
4
5
 
5
6
  group :test do
6
7
  gem 'rspec'
8
+ gem 'i18n'
7
9
  gem 'webmock', '~>1.7.0'
8
- gem 'vcr'
10
+ gem 'vcr', '~>1.11'
9
11
  end
data/Gemfile.lock CHANGED
@@ -1,9 +1,12 @@
1
1
  GEM
2
2
  remote: http://rubygems.org/
3
3
  specs:
4
+ activesupport (3.0.0)
4
5
  addressable (2.2.7)
5
6
  crack (0.3.1)
6
7
  diff-lcs (1.1.3)
8
+ i18n (0.6.0)
9
+ json (1.6.5)
7
10
  rspec (2.8.0)
8
11
  rspec-core (~> 2.8.0)
9
12
  rspec-expectations (~> 2.8.0)
@@ -21,6 +24,9 @@ PLATFORMS
21
24
  ruby
22
25
 
23
26
  DEPENDENCIES
27
+ activesupport
28
+ i18n
29
+ json
24
30
  rspec
25
- vcr
31
+ vcr (~> 1.11)
26
32
  webmock (~> 1.7.0)