copycopter_client 1.1.2 → 2.0.0
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/.gitignore +1 -0
- data/.travis.yml +9 -0
- data/Appraisals +10 -10
- data/Gemfile +1 -1
- data/Gemfile.lock +1 -1
- data/MIT-LICENSE +1 -1
- data/README.md +44 -37
- data/Rakefile +5 -3
- data/copycopter_client.gemspec +27 -30
- data/features/step_definitions/rails_steps.rb +1 -0
- data/gemfiles/2.3.gemfile +1 -1
- data/gemfiles/2.3.gemfile.lock +2 -2
- data/gemfiles/3.0.gemfile +1 -1
- data/gemfiles/3.0.gemfile.lock +29 -29
- data/gemfiles/3.1.gemfile +1 -1
- data/gemfiles/3.1.gemfile.lock +69 -67
- data/lib/copycopter_client.rb +14 -4
- data/lib/copycopter_client/cache.rb +53 -15
- data/lib/copycopter_client/client.rb +20 -17
- data/lib/copycopter_client/configuration.rb +30 -26
- data/lib/copycopter_client/version.rb +2 -3
- data/lib/tasks/copycopter_client_tasks.rake +13 -0
- data/spec/copycopter_client/cache_spec.rb +65 -0
- data/spec/copycopter_client/client_spec.rb +22 -23
- data/spec/copycopter_client/configuration_spec.rb +75 -77
- data/spec/spec_helper.rb +5 -5
- data/spec/support/fake_client.rb +6 -2
- data/spec/support/fake_copycopter_app.rb +41 -30
- metadata +152 -228
- data/.bundle/config +0 -2
- data/AddTrustExternalCARoot.crt +0 -25
- data/CONTRIBUTING.md +0 -38
data/.gitignore
CHANGED
data/.travis.yml
ADDED
data/Appraisals
CHANGED
@@ -1,15 +1,15 @@
|
|
1
|
-
appraise
|
2
|
-
gem
|
1
|
+
appraise '2.3' do
|
2
|
+
gem 'rails', '2.3.14'
|
3
3
|
end
|
4
4
|
|
5
|
-
appraise
|
6
|
-
gem
|
5
|
+
appraise '3.0' do
|
6
|
+
gem 'rails', '3.0.3'
|
7
7
|
end
|
8
8
|
|
9
|
-
appraise
|
10
|
-
gem
|
11
|
-
gem
|
12
|
-
gem
|
13
|
-
gem
|
14
|
-
gem
|
9
|
+
appraise '3.1' do
|
10
|
+
gem 'rails', '3.1.0'
|
11
|
+
gem 'jquery-rails'
|
12
|
+
gem 'uglifier'
|
13
|
+
gem 'sass-rails'
|
14
|
+
gem 'coffee-rails'
|
15
15
|
end
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,86 +1,93 @@
|
|
1
1
|
Copycopter Client
|
2
2
|
=================
|
3
3
|
|
4
|
-
This is the
|
4
|
+
This is the Ruby on Rails client for
|
5
|
+
[Copycopter](https://github.com/copycopter/copycopter-server).
|
5
6
|
|
6
|
-
|
7
|
+
It uses I18n to access copy and translations from a Copycopter project.
|
7
8
|
|
8
9
|
Installation
|
9
10
|
------------
|
10
11
|
|
11
|
-
|
12
|
+
In your `Gemfile`:
|
12
13
|
|
13
|
-
gem
|
14
|
+
gem 'copycopter_client'
|
14
15
|
|
15
|
-
|
16
|
+
Run:
|
16
17
|
|
17
|
-
|
18
|
+
bundle install
|
18
19
|
|
19
|
-
|
20
|
-
|
21
|
-
Then run `bundle install`.
|
22
|
-
|
23
|
-
### Rails 2
|
24
|
-
|
25
|
-
Add the following line to your `config/environment.rb`:
|
26
|
-
|
27
|
-
config.gem 'copycopter_client'
|
28
|
-
|
29
|
-
Then run `rake gems:install`. We also recommend vendoring the gem by running `rake gems:unpack:dependencies GEM=copycopter_client`.
|
30
|
-
|
31
|
-
### Configuration
|
32
|
-
|
33
|
-
Add the following to your application:
|
20
|
+
In your `config/initializers/copycopter.rb`:
|
34
21
|
|
35
22
|
CopycopterClient.configure do |config|
|
36
|
-
config.api_key =
|
23
|
+
config.api_key = 'YOUR API KEY HERE'
|
24
|
+
config.host = 'your-copycopter-server.herokuapp.com'
|
37
25
|
end
|
38
26
|
|
39
|
-
|
27
|
+
The API key is on the project page. See `CopycopterClient::Configuration` for
|
28
|
+
all configuration options.
|
40
29
|
|
41
30
|
Usage
|
42
31
|
-----
|
43
32
|
|
44
|
-
|
33
|
+
Access blurbs by using `I18n.translate`. It is aliased as `translate` and `t`
|
34
|
+
inside Rails controllers and views.
|
45
35
|
|
46
|
-
#
|
36
|
+
# controller
|
47
37
|
def index
|
48
|
-
flash[:success] = t(
|
38
|
+
flash[:success] = t('users.create.success', :default => 'User created')
|
49
39
|
end
|
50
40
|
|
51
|
-
#
|
52
|
-
<%= t
|
41
|
+
# view
|
42
|
+
<%= t '.welcome', :default => 'Why hello there' %>
|
53
43
|
|
54
|
-
#
|
55
|
-
I18n.translate
|
44
|
+
# model, rake task, etc.
|
45
|
+
I18n.translate 'system.tasks_complete', :default => 'Tasks complete'
|
56
46
|
|
57
47
|
# Interpolation
|
58
|
-
I18n.translate
|
48
|
+
I18n.translate 'mailer.welcome', :default => 'Welcome, %{name}!',
|
49
|
+
:name => @user.name
|
50
|
+
|
51
|
+
Using a prefixed dot (ex: '.welcome') only works in views. Use the full key in
|
52
|
+
controllers and other places.
|
59
53
|
|
60
|
-
|
54
|
+
[I18n docs](http://rdoc.info/github/svenfuchs/i18n/master/file/README.textile).
|
61
55
|
|
62
56
|
Deploys
|
63
57
|
-------
|
64
58
|
|
65
|
-
Blurbs start out as draft copy
|
59
|
+
Blurbs start out as draft copy and aren't displayed in production until
|
60
|
+
published. To publish all draft copy when deploying, use the rake task:
|
66
61
|
|
67
62
|
rake copycopter:deploy
|
68
63
|
|
64
|
+
Exporting
|
65
|
+
---------
|
66
|
+
|
67
|
+
Blurbs are cached in-memory while your Rails application is running. To export
|
68
|
+
all cached blurbs to a yml file for offline access, use the rake task:
|
69
|
+
|
70
|
+
rake copycopter:export
|
71
|
+
|
72
|
+
The exported yaml will be located at `config/locales/copycopter.yml`.
|
73
|
+
|
69
74
|
Contributing
|
70
75
|
------------
|
71
76
|
|
72
|
-
|
77
|
+
See the [style guide](https://github.com/copycopter/style-guide).
|
73
78
|
|
74
79
|
Credits
|
75
80
|
-------
|
76
81
|
|
77
82
|

|
78
83
|
|
79
|
-
Copycopter Client
|
84
|
+
Copycopter Client was created by [thoughtbot, inc](http://thoughtbot.com)
|
80
85
|
|
81
|
-
|
86
|
+
It is maintained by the fine folks at [Crowdtap](http://crowdtap.com) and
|
87
|
+
[Iora Health](http://iorahealth.com).
|
82
88
|
|
83
89
|
License
|
84
90
|
-------
|
85
91
|
|
86
|
-
Copycopter Client is
|
92
|
+
Copycopter Client is free software, and may be redistributed under the terms
|
93
|
+
specified in the MIT-LICENSE file.
|
data/Rakefile
CHANGED
@@ -6,7 +6,7 @@ require 'yard'
|
|
6
6
|
|
7
7
|
desc 'Default: run the specs and features.'
|
8
8
|
task :default => :spec do
|
9
|
-
system
|
9
|
+
system "rake -s appraisal cucumber;"
|
10
10
|
end
|
11
11
|
|
12
12
|
desc 'Test the copycopter_client plugin.'
|
@@ -17,8 +17,10 @@ end
|
|
17
17
|
|
18
18
|
desc "Run cucumber features"
|
19
19
|
Cucumber::Rake::Task.new do |t|
|
20
|
-
t.cucumber_opts = [
|
21
|
-
|
20
|
+
t.cucumber_opts = [
|
21
|
+
'--tags', '~@wip',
|
22
|
+
'--format', (ENV['CUCUMBER_FORMAT'] || 'progress')
|
23
|
+
]
|
22
24
|
end
|
23
25
|
|
24
26
|
YARD::Rake::YardocTask.new do |t|
|
data/copycopter_client.gemspec
CHANGED
@@ -1,36 +1,33 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
$LOAD_PATH.push File.expand_path(
|
2
|
+
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
|
3
3
|
require 'copycopter_client/version'
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
|
-
s.
|
7
|
-
s.
|
6
|
+
s.add_dependency 'i18n', '>= 0.5.0'
|
7
|
+
s.add_dependency 'json'
|
8
|
+
s.add_development_dependency 'appraisal', '~> 0.4'
|
9
|
+
s.add_development_dependency 'aruba', '~> 0.3.2'
|
10
|
+
s.add_development_dependency 'bourne'
|
11
|
+
s.add_development_dependency 'cucumber', '~> 0.10.0'
|
12
|
+
s.add_development_dependency 'i18n'
|
13
|
+
s.add_development_dependency 'rails', '~> 3.1.0'
|
14
|
+
s.add_development_dependency 'rake', '0.9.2'
|
15
|
+
s.add_development_dependency 'rspec', '~> 2.3'
|
16
|
+
s.add_development_dependency 'sham_rack'
|
17
|
+
s.add_development_dependency 'sinatra'
|
18
|
+
s.add_development_dependency 'sqlite3-ruby'
|
19
|
+
s.add_development_dependency 'thin'
|
20
|
+
s.add_development_dependency 'webmock'
|
21
|
+
s.add_development_dependency 'yard'
|
22
|
+
s.authors = ['thoughtbot']
|
23
|
+
s.email = 'support@thoughtbot.com'
|
24
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
25
|
+
s.files = `git ls-files`.split("\n")
|
26
|
+
s.homepage = 'http://github.com/copycopter/copycopter-ruby-client'
|
27
|
+
s.name = 'copycopter_client'
|
8
28
|
s.platform = Gem::Platform::RUBY
|
9
|
-
s.
|
10
|
-
s.
|
11
|
-
s.
|
12
|
-
s.
|
13
|
-
|
14
|
-
s.files = `git ls-files`.split("\n")
|
15
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
16
|
-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
17
|
-
s.require_paths = ["lib"]
|
18
|
-
|
19
|
-
s.add_dependency('i18n', '>= 0.5.0')
|
20
|
-
s.add_dependency('json')
|
21
|
-
|
22
|
-
s.add_development_dependency('rails', '~> 3.1.0')
|
23
|
-
s.add_development_dependency('sqlite3-ruby')
|
24
|
-
s.add_development_dependency('rspec', '~> 2.3')
|
25
|
-
s.add_development_dependency('bourne')
|
26
|
-
s.add_development_dependency('webmock')
|
27
|
-
s.add_development_dependency('rake', '0.9.2')
|
28
|
-
s.add_development_dependency('sham_rack')
|
29
|
-
s.add_development_dependency('cucumber', '~> 0.10.0')
|
30
|
-
s.add_development_dependency('aruba', '~> 0.3.2')
|
31
|
-
s.add_development_dependency('sinatra')
|
32
|
-
s.add_development_dependency('yard')
|
33
|
-
s.add_development_dependency('thin')
|
34
|
-
s.add_development_dependency('i18n')
|
35
|
-
s.add_development_dependency('appraisal', '~> 0.4')
|
29
|
+
s.require_paths = ['lib']
|
30
|
+
s.summary = 'Client for the Copycopter copy management service'
|
31
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
32
|
+
s.version = CopycopterClient::VERSION
|
36
33
|
end
|
data/gemfiles/2.3.gemfile
CHANGED
data/gemfiles/2.3.gemfile.lock
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
PATH
|
2
|
-
remote: /Users/
|
2
|
+
remote: /Users/croaky/dev/copycopter-ruby-client
|
3
3
|
specs:
|
4
4
|
copycopter_client (1.1.2)
|
5
5
|
i18n (>= 0.5.0)
|
@@ -94,7 +94,7 @@ DEPENDENCIES
|
|
94
94
|
copycopter_client!
|
95
95
|
cucumber (~> 0.10.0)
|
96
96
|
i18n
|
97
|
-
rails (
|
97
|
+
rails (= 2.3.14)
|
98
98
|
rake (= 0.9.2)
|
99
99
|
rspec (~> 2.3)
|
100
100
|
sham_rack
|
data/gemfiles/3.0.gemfile
CHANGED
data/gemfiles/3.0.gemfile.lock
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
PATH
|
2
|
-
remote: /Users/
|
2
|
+
remote: /Users/croaky/dev/copycopter-ruby-client
|
3
3
|
specs:
|
4
4
|
copycopter_client (1.1.2)
|
5
5
|
i18n (>= 0.5.0)
|
@@ -9,32 +9,32 @@ GEM
|
|
9
9
|
remote: http://rubygems.org/
|
10
10
|
specs:
|
11
11
|
abstract (1.0.0)
|
12
|
-
actionmailer (3.0.
|
13
|
-
actionpack (= 3.0.
|
14
|
-
mail (~> 2.2.
|
15
|
-
actionpack (3.0.
|
16
|
-
activemodel (= 3.0.
|
17
|
-
activesupport (= 3.0.
|
12
|
+
actionmailer (3.0.3)
|
13
|
+
actionpack (= 3.0.3)
|
14
|
+
mail (~> 2.2.9)
|
15
|
+
actionpack (3.0.3)
|
16
|
+
activemodel (= 3.0.3)
|
17
|
+
activesupport (= 3.0.3)
|
18
18
|
builder (~> 2.1.2)
|
19
19
|
erubis (~> 2.6.6)
|
20
20
|
i18n (~> 0.4)
|
21
21
|
rack (~> 1.2.1)
|
22
22
|
rack-mount (~> 0.6.13)
|
23
|
-
rack-test (~> 0.5.
|
23
|
+
rack-test (~> 0.5.6)
|
24
24
|
tzinfo (~> 0.3.23)
|
25
|
-
activemodel (3.0.
|
26
|
-
activesupport (= 3.0.
|
25
|
+
activemodel (3.0.3)
|
26
|
+
activesupport (= 3.0.3)
|
27
27
|
builder (~> 2.1.2)
|
28
28
|
i18n (~> 0.4)
|
29
|
-
activerecord (3.0.
|
30
|
-
activemodel (= 3.0.
|
31
|
-
activesupport (= 3.0.
|
29
|
+
activerecord (3.0.3)
|
30
|
+
activemodel (= 3.0.3)
|
31
|
+
activesupport (= 3.0.3)
|
32
32
|
arel (~> 2.0.2)
|
33
33
|
tzinfo (~> 0.3.23)
|
34
|
-
activeresource (3.0.
|
35
|
-
activemodel (= 3.0.
|
36
|
-
activesupport (= 3.0.
|
37
|
-
activesupport (3.0.
|
34
|
+
activeresource (3.0.3)
|
35
|
+
activemodel (= 3.0.3)
|
36
|
+
activesupport (= 3.0.3)
|
37
|
+
activesupport (3.0.3)
|
38
38
|
addressable (2.2.6)
|
39
39
|
appraisal (0.4.0)
|
40
40
|
bundler
|
@@ -80,17 +80,17 @@ GEM
|
|
80
80
|
rack (>= 1.0.0)
|
81
81
|
rack-test (0.5.7)
|
82
82
|
rack (>= 1.0)
|
83
|
-
rails (3.0.
|
84
|
-
actionmailer (= 3.0.
|
85
|
-
actionpack (= 3.0.
|
86
|
-
activerecord (= 3.0.
|
87
|
-
activeresource (= 3.0.
|
88
|
-
activesupport (= 3.0.
|
83
|
+
rails (3.0.3)
|
84
|
+
actionmailer (= 3.0.3)
|
85
|
+
actionpack (= 3.0.3)
|
86
|
+
activerecord (= 3.0.3)
|
87
|
+
activeresource (= 3.0.3)
|
88
|
+
activesupport (= 3.0.3)
|
89
89
|
bundler (~> 1.0)
|
90
|
-
railties (= 3.0.
|
91
|
-
railties (3.0.
|
92
|
-
actionpack (= 3.0.
|
93
|
-
activesupport (= 3.0.
|
90
|
+
railties (= 3.0.3)
|
91
|
+
railties (3.0.3)
|
92
|
+
actionpack (= 3.0.3)
|
93
|
+
activesupport (= 3.0.3)
|
94
94
|
rake (>= 0.8.7)
|
95
95
|
thor (~> 0.14.4)
|
96
96
|
rake (0.9.2)
|
@@ -120,7 +120,7 @@ GEM
|
|
120
120
|
treetop (1.4.10)
|
121
121
|
polyglot
|
122
122
|
polyglot (>= 0.3.1)
|
123
|
-
tzinfo (0.3.
|
123
|
+
tzinfo (0.3.32)
|
124
124
|
webmock (1.7.7)
|
125
125
|
addressable (~> 2.2, > 2.2.5)
|
126
126
|
crack (>= 0.1.7)
|
@@ -136,7 +136,7 @@ DEPENDENCIES
|
|
136
136
|
copycopter_client!
|
137
137
|
cucumber (~> 0.10.0)
|
138
138
|
i18n
|
139
|
-
rails (
|
139
|
+
rails (= 3.0.3)
|
140
140
|
rake (= 0.9.2)
|
141
141
|
rspec (~> 2.3)
|
142
142
|
sham_rack
|
data/gemfiles/3.1.gemfile
CHANGED
data/gemfiles/3.1.gemfile.lock
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
PATH
|
2
|
-
remote: /Users/
|
2
|
+
remote: /Users/croaky/dev/copycopter-ruby-client
|
3
3
|
specs:
|
4
4
|
copycopter_client (1.1.2)
|
5
5
|
i18n (>= 0.5.0)
|
@@ -8,47 +8,49 @@ PATH
|
|
8
8
|
GEM
|
9
9
|
remote: http://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actionmailer (3.1.
|
12
|
-
actionpack (= 3.1.
|
11
|
+
actionmailer (3.1.0)
|
12
|
+
actionpack (= 3.1.0)
|
13
13
|
mail (~> 2.3.0)
|
14
|
-
actionpack (3.1.
|
15
|
-
activemodel (= 3.1.
|
16
|
-
activesupport (= 3.1.
|
14
|
+
actionpack (3.1.0)
|
15
|
+
activemodel (= 3.1.0)
|
16
|
+
activesupport (= 3.1.0)
|
17
17
|
builder (~> 3.0.0)
|
18
18
|
erubis (~> 2.7.0)
|
19
19
|
i18n (~> 0.6)
|
20
20
|
rack (~> 1.3.2)
|
21
|
-
rack-cache (~> 1.
|
21
|
+
rack-cache (~> 1.0.3)
|
22
22
|
rack-mount (~> 0.8.2)
|
23
23
|
rack-test (~> 0.6.1)
|
24
|
-
sprockets (~> 2.0.
|
25
|
-
activemodel (3.1.
|
26
|
-
activesupport (= 3.1.
|
24
|
+
sprockets (~> 2.0.0)
|
25
|
+
activemodel (3.1.0)
|
26
|
+
activesupport (= 3.1.0)
|
27
|
+
bcrypt-ruby (~> 3.0.0)
|
27
28
|
builder (~> 3.0.0)
|
28
29
|
i18n (~> 0.6)
|
29
|
-
activerecord (3.1.
|
30
|
-
activemodel (= 3.1.
|
31
|
-
activesupport (= 3.1.
|
30
|
+
activerecord (3.1.0)
|
31
|
+
activemodel (= 3.1.0)
|
32
|
+
activesupport (= 3.1.0)
|
32
33
|
arel (~> 2.2.1)
|
33
34
|
tzinfo (~> 0.3.29)
|
34
|
-
activeresource (3.1.
|
35
|
-
activemodel (= 3.1.
|
36
|
-
activesupport (= 3.1.
|
37
|
-
activesupport (3.1.
|
35
|
+
activeresource (3.1.0)
|
36
|
+
activemodel (= 3.1.0)
|
37
|
+
activesupport (= 3.1.0)
|
38
|
+
activesupport (3.1.0)
|
38
39
|
multi_json (~> 1.0)
|
39
|
-
addressable (2.2.
|
40
|
-
appraisal (0.4.
|
40
|
+
addressable (2.2.7)
|
41
|
+
appraisal (0.4.1)
|
41
42
|
bundler
|
42
43
|
rake
|
43
|
-
arel (2.2.
|
44
|
+
arel (2.2.3)
|
44
45
|
aruba (0.3.7)
|
45
46
|
childprocess (>= 0.1.9)
|
46
47
|
cucumber (>= 0.10.5)
|
47
48
|
rspec (>= 2.6.0)
|
48
|
-
|
49
|
-
|
49
|
+
bcrypt-ruby (3.0.1)
|
50
|
+
bourne (1.1.1)
|
51
|
+
mocha (= 0.10.4)
|
50
52
|
builder (3.0.0)
|
51
|
-
childprocess (0.
|
53
|
+
childprocess (0.3.1)
|
52
54
|
ffi (~> 1.0.6)
|
53
55
|
coffee-rails (3.1.1)
|
54
56
|
coffee-script (>= 2.2.0)
|
@@ -56,7 +58,7 @@ GEM
|
|
56
58
|
coffee-script (2.2.0)
|
57
59
|
coffee-script-source
|
58
60
|
execjs
|
59
|
-
coffee-script-source (1.
|
61
|
+
coffee-script-source (1.2.0)
|
60
62
|
crack (0.3.1)
|
61
63
|
cucumber (0.10.7)
|
62
64
|
builder (>= 2.1.2)
|
@@ -64,85 +66,85 @@ GEM
|
|
64
66
|
gherkin (~> 2.4.0)
|
65
67
|
json (>= 1.4.6)
|
66
68
|
term-ansicolor (>= 1.0.5)
|
67
|
-
daemons (1.1.
|
69
|
+
daemons (1.1.8)
|
68
70
|
diff-lcs (1.1.3)
|
69
71
|
erubis (2.7.0)
|
70
72
|
eventmachine (0.12.10)
|
71
|
-
execjs (1.
|
73
|
+
execjs (1.3.0)
|
72
74
|
multi_json (~> 1.0)
|
73
75
|
ffi (1.0.11)
|
74
76
|
gherkin (2.4.21)
|
75
77
|
json (>= 1.4.6)
|
76
78
|
hike (1.2.1)
|
77
79
|
i18n (0.6.0)
|
78
|
-
jquery-rails (1.0.
|
80
|
+
jquery-rails (1.0.19)
|
79
81
|
railties (~> 3.0)
|
80
82
|
thor (~> 0.14)
|
81
|
-
json (1.6.
|
82
|
-
mail (2.3.
|
83
|
+
json (1.6.5)
|
84
|
+
mail (2.3.3)
|
83
85
|
i18n (>= 0.4.0)
|
84
86
|
mime-types (~> 1.16)
|
85
87
|
treetop (~> 1.4.8)
|
88
|
+
metaclass (0.0.1)
|
86
89
|
mime-types (1.17.2)
|
87
|
-
mocha (0.
|
88
|
-
|
89
|
-
multi_json (1.0
|
90
|
+
mocha (0.10.4)
|
91
|
+
metaclass (~> 0.0.1)
|
92
|
+
multi_json (1.1.0)
|
90
93
|
polyglot (0.3.3)
|
91
|
-
rack (1.3.
|
92
|
-
rack-cache (1.
|
94
|
+
rack (1.3.6)
|
95
|
+
rack-cache (1.0.3)
|
93
96
|
rack (>= 0.4)
|
94
97
|
rack-mount (0.8.3)
|
95
98
|
rack (>= 1.0.0)
|
96
|
-
rack-protection (1.
|
99
|
+
rack-protection (1.2.0)
|
97
100
|
rack
|
98
101
|
rack-ssl (1.3.2)
|
99
102
|
rack
|
100
103
|
rack-test (0.6.1)
|
101
104
|
rack (>= 1.0)
|
102
|
-
rails (3.1.
|
103
|
-
actionmailer (= 3.1.
|
104
|
-
actionpack (= 3.1.
|
105
|
-
activerecord (= 3.1.
|
106
|
-
activeresource (= 3.1.
|
107
|
-
activesupport (= 3.1.
|
105
|
+
rails (3.1.0)
|
106
|
+
actionmailer (= 3.1.0)
|
107
|
+
actionpack (= 3.1.0)
|
108
|
+
activerecord (= 3.1.0)
|
109
|
+
activeresource (= 3.1.0)
|
110
|
+
activesupport (= 3.1.0)
|
108
111
|
bundler (~> 1.0)
|
109
|
-
railties (= 3.1.
|
110
|
-
railties (3.1.
|
111
|
-
actionpack (= 3.1.
|
112
|
-
activesupport (= 3.1.
|
112
|
+
railties (= 3.1.0)
|
113
|
+
railties (3.1.0)
|
114
|
+
actionpack (= 3.1.0)
|
115
|
+
activesupport (= 3.1.0)
|
113
116
|
rack-ssl (~> 1.3.2)
|
114
117
|
rake (>= 0.8.7)
|
115
118
|
rdoc (~> 3.4)
|
116
119
|
thor (~> 0.14.6)
|
117
120
|
rake (0.9.2)
|
118
|
-
rdoc (3.
|
121
|
+
rdoc (3.12)
|
119
122
|
json (~> 1.4)
|
120
|
-
rspec (2.
|
121
|
-
rspec-core (~> 2.
|
122
|
-
rspec-expectations (~> 2.
|
123
|
-
rspec-mocks (~> 2.
|
124
|
-
rspec-core (2.
|
125
|
-
rspec-expectations (2.
|
123
|
+
rspec (2.8.0)
|
124
|
+
rspec-core (~> 2.8.0)
|
125
|
+
rspec-expectations (~> 2.8.0)
|
126
|
+
rspec-mocks (~> 2.8.0)
|
127
|
+
rspec-core (2.8.0)
|
128
|
+
rspec-expectations (2.8.0)
|
126
129
|
diff-lcs (~> 1.1.2)
|
127
|
-
rspec-mocks (2.
|
128
|
-
sass (3.1.
|
129
|
-
sass-rails (3.1.
|
130
|
+
rspec-mocks (2.8.0)
|
131
|
+
sass (3.1.15)
|
132
|
+
sass-rails (3.1.5)
|
130
133
|
actionpack (~> 3.1.0)
|
131
134
|
railties (~> 3.1.0)
|
132
|
-
sass (
|
133
|
-
sprockets (~> 2.0.0)
|
135
|
+
sass (~> 3.1.10)
|
134
136
|
tilt (~> 1.3.2)
|
135
137
|
sham_rack (1.3.3)
|
136
138
|
rack
|
137
|
-
sinatra (1.3.
|
138
|
-
rack (~> 1.3, >= 1.3.
|
139
|
-
rack-protection (~> 1.
|
139
|
+
sinatra (1.3.2)
|
140
|
+
rack (~> 1.3, >= 1.3.6)
|
141
|
+
rack-protection (~> 1.2)
|
140
142
|
tilt (~> 1.3, >= 1.3.3)
|
141
143
|
sprockets (2.0.3)
|
142
144
|
hike (~> 1.2)
|
143
145
|
rack (~> 1.0)
|
144
146
|
tilt (~> 1.1, != 1.3.0)
|
145
|
-
sqlite3 (1.3.
|
147
|
+
sqlite3 (1.3.5)
|
146
148
|
sqlite3-ruby (1.3.3)
|
147
149
|
sqlite3 (>= 1.3.3)
|
148
150
|
term-ansicolor (1.0.7)
|
@@ -155,14 +157,14 @@ GEM
|
|
155
157
|
treetop (1.4.10)
|
156
158
|
polyglot
|
157
159
|
polyglot (>= 0.3.1)
|
158
|
-
tzinfo (0.3.
|
159
|
-
uglifier (1.
|
160
|
+
tzinfo (0.3.32)
|
161
|
+
uglifier (1.2.3)
|
160
162
|
execjs (>= 0.3.0)
|
161
163
|
multi_json (>= 1.0.2)
|
162
|
-
webmock (1.
|
163
|
-
addressable (
|
164
|
+
webmock (1.8.3)
|
165
|
+
addressable (>= 2.2.7)
|
164
166
|
crack (>= 0.1.7)
|
165
|
-
yard (0.7.
|
167
|
+
yard (0.7.5)
|
166
168
|
|
167
169
|
PLATFORMS
|
168
170
|
ruby
|
@@ -176,7 +178,7 @@ DEPENDENCIES
|
|
176
178
|
cucumber (~> 0.10.0)
|
177
179
|
i18n
|
178
180
|
jquery-rails
|
179
|
-
rails (
|
181
|
+
rails (= 3.1.0)
|
180
182
|
rake (= 0.9.2)
|
181
183
|
rspec (~> 2.3)
|
182
184
|
sass-rails
|