8000 Added gemfile.lock and updated readme · n00bdevel/example-ruby-app@8db0892 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8db0892

Browse files
Jamie DwyerJamie Dwyer
authored andcommitted
Added gemfile.lock and updated readme
1 parent b095480 commit 8db0892

File tree

2 files changed

+69
-1
lines changed

2 files changed

+69
-1
lines changed

Gemfile.lock

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activemodel (4.2.5)
5+
activesupport (= 4.2.5)
6+
builder (~> 3.1)
7+
activeresource (4.0.0)
8+
activemodel (~> 4.0)
9+
activesupport (~> 4.0)
10+
rails-observers (~> 0.1.1)
11+
activesupport (4.2.5)
12+
i18n (~> 0.7)
13+
json (~> 1.7, >= 1.7.7)
14+
minitest (~> 5.1)
15+
thread_safe (~> 0.3, >= 0.3.4)
16+
tzinfo (~> 1.1)
17+
builder (3.2.2)
18+
dotenv (2.1.0)
19+
httparty (0.13.7)
20+
json (~> 1.8)
21+
multi_xml (>= 0.5.2)
22+
i18n (0.7.0)
23+
json (1.8.3)
24+
minitest (5.8.3)
25+
multi_xml (0.5.5)
26+
rack (1.6.4)
27+
rack-protection (1.5.3)
28+
rack
29+
rails-observers (0.1.2)
30+
activemodel (~> 4.0)
31+
shopify_api (4.0.7)
32+
activeresource
33+
rack
34+
sinatra (1.4.6)
35+
rack (~> 1.4)
36+
rack-protection (~> 1.4)
37+
tilt (>= 1.3, < 3)
38+
thread_safe (0.3.5)
39+
tilt (2.0.2)
40+
tzinfo (1.2.2)
41+
thread_safe (~> 0.1)
42+
43+
PLATFORMS
44+
ruby
45+
46+
DEPENDENCIES
47+
dotenv
48+
httparty
49+
shopify_api (~> 4.0.7)
50+
sinatra
51+
52+
BUNDLED WITH
53+
1.11.2

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
1-
# shopify-ruby-giftbasket
1+
# shopify-ruby-giftbasket
2+
3+
This is an example Shopify application written in Sinatra solely for the purposes of introducing new developers to the Shopify API.
4+
5+
This example uses a `.env` file to store the application credentials. After cloning the repository, you'll need to create a file named `.env` in the same folder. The contents of the file should be as follows:
6+
```
7+
API_KEY=YOUR_API_KEY
8+
API_SECRET=YOUR_SECRET_KEY
9+
```
10+
11+
where API_KEY and API_KEY are the values of your application's API key and secret key respectively.
12+
13+
To get started with this example:
14+
1. Create the `.env` file as described above.
15+
1. `bundle install` to obtain all of the necessary dependencies
16+
2. `ruby app.rb` to run the example application.

0 commit comments

Comments
 (0)
0